14 lines
304 B
TypeScript
14 lines
304 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;
|