import type {ComponentChildren} from "preact"; | |
import style from "./style.module.scss" | |
export function Container(props: { children: ComponentChildren }) { | |
return ( | |
<div class={style.container}> | |
{props.children} | |
</div> | |
); | |
} |
import type {ComponentChildren} from "preact"; | |
import style from "./style.module.scss" | |
export function Container(props: { children: ComponentChildren }) { | |
return ( | |
<div class={style.container}> | |
{props.children} | |
</div> | |
); | |
} |