File size: 259 Bytes
1813a37
 
 
 
 
 
 
 
 
1982de5
1
2
3
4
5
6
7
8
9
10
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>
    );
}