blob: 6beb82b1e8384362a3fbdec5737a370f8e3309b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import { ComponentChildren } from 'preact';
import './Content.css';
export interface ContentProps {
children: ComponentChildren;
}
const Content = ({ children }: ContentProps) => {
return (
<main class="__Content">
{children}
</main>
);
};
export default Content;
|