2022-10-12 17:51:49 +00:00
|
|
|
import react from 'react';
|
|
|
|
|
2022-10-15 09:58:02 +00:00
|
|
|
interface TemplateProperties {}
|
2022-10-12 17:51:49 +00:00
|
|
|
|
2022-10-15 09:58:02 +00:00
|
|
|
const Template: react.FC<TemplateProperties> = (props: TemplateProperties) => {
|
2022-10-12 17:51:49 +00:00
|
|
|
return <></>;
|
|
|
|
};
|
|
|
|
|
2022-10-15 09:58:02 +00:00
|
|
|
export default Template;
|