parent
5efd3938e2
commit
cf40057e97
13 changed files with 19 additions and 17 deletions
@ -1,7 +1,7 @@ |
|||||||
import { ReactNode } from 'react'; |
import { ReactNode } from 'react'; |
||||||
import { Box } from '@material-ui/core'; |
import { Box } from '@material-ui/core'; |
||||||
import { makeStyles } from '@material-ui/core/styles'; |
import { makeStyles } from '@material-ui/core/styles'; |
||||||
import { DIVIDER } from '../lib/consts/DEFAULT_THEME'; |
import { DIVIDER } from '../../lib/consts/DEFAULT_THEME'; |
||||||
|
|
||||||
type Props = { |
type Props = { |
||||||
children: ReactNode; |
children: ReactNode; |
@ -1,6 +1,6 @@ |
|||||||
import { ReactNode } from 'react'; |
import { ReactNode } from 'react'; |
||||||
import { makeStyles } from '@material-ui/core/styles'; |
import { makeStyles } from '@material-ui/core/styles'; |
||||||
import { PANEL_BACKGROUND, TEXT } from '../lib/consts/DEFAULT_THEME'; |
import { PANEL_BACKGROUND, TEXT } from '../../lib/consts/DEFAULT_THEME'; |
||||||
|
|
||||||
type Props = { |
type Props = { |
||||||
children: ReactNode; |
children: ReactNode; |
@ -1,7 +1,7 @@ |
|||||||
import { ReactNode } from 'react'; |
import { ReactNode } from 'react'; |
||||||
import { Box } from '@material-ui/core'; |
import { Box } from '@material-ui/core'; |
||||||
import { makeStyles } from '@material-ui/core/styles'; |
import { makeStyles } from '@material-ui/core/styles'; |
||||||
import { DIVIDER } from '../lib/consts/DEFAULT_THEME'; |
import { DIVIDER } from '../../lib/consts/DEFAULT_THEME'; |
||||||
|
|
||||||
type Props = { |
type Props = { |
||||||
children: ReactNode; |
children: ReactNode; |
@ -0,0 +1,5 @@ |
|||||||
|
import PanelHeader from './PanelHeader'; |
||||||
|
import InnerPanel from './InnerPanel'; |
||||||
|
import Panel from './Panel'; |
||||||
|
|
||||||
|
export { Panel, PanelHeader, InnerPanel }; |
Loading…
Reference in new issue