11 lines
No EOL
415 B
TypeScript
11 lines
No EOL
415 B
TypeScript
import PageContentBlock from '@/components/elements/PageContentBlock'
|
|
import ScreenBlock from '@/components/elements/ScreenBlock'
|
|
|
|
const DashboardContainer = () => {
|
|
return <ScreenBlock title='not found' message='The link you tried to access'/>
|
|
return <PageContentBlock title='Dashboard' showFlashKey='dashboard'>
|
|
<h1>hola amigos</h1>
|
|
</PageContentBlock>
|
|
}
|
|
|
|
export default DashboardContainer |