15 lines
324 B
TypeScript
15 lines
324 B
TypeScript
|
import React from 'react';
|
||
|
import PageContentBlock from '@/components/elements/PageContentBlock';
|
||
|
|
||
|
const ExampleContainer = () => {
|
||
|
return (
|
||
|
<PageContentBlock title={'Example'}>
|
||
|
<>
|
||
|
<p>hello</p>
|
||
|
</>
|
||
|
</PageContentBlock>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default ExampleContainer;
|