Skip to content

Commit

Permalink
fixed errors template export imports
Browse files Browse the repository at this point in the history
  • Loading branch information
MTeresaMB committed Oct 18, 2023
1 parent ef04c90 commit fd9372e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion apps/react-app/src/common-app/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ export * from './navbar';
export * from './card';
export * from './modal';
export * from './select';
export * from './export-config';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './customSelectColor.component';
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import React from 'react';
import { ExportHTMLSettings } from '@lemoncode/manfred2html';
import { theme } from '@/core/theme';
import { Button } from '@/common-app/components';
import { Button, CustomSelect } from '@/common-app/components';
import { useUserChoiceContext } from '@/core/user-choice';
import { CustomSelectColor } from './components/customSelectColor.component';
import { CustomSelect } from '../select/customSelect.component';
import * as classes from './export-config.styles';
interface Props {
htmlTemplate: string;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import React from 'react';
import { ExportHTMLSettings } from '@lemoncode/manfred2html';
import { useUserChoiceContext } from '@/core';
import { Button, Footer, Header, Modal, Navbar, ExportConfig } from '@/common-app/components';
import { Button, Footer, Header, Modal, Navbar } from '@/common-app/components';
import * as classes from './template-export.styles';
import { ExportConfig } from './components/export-config';

interface Props {
error: boolean;
Expand Down

0 comments on commit fd9372e

Please sign in to comment.