arcast/apps/main/src/components/Panel/Panel.tsx

8 lines
292 B
TypeScript
Raw Normal View History

2024-04-24 17:32:01 +02:00
import { FunctionComponent, PropsWithChildren } from "react";
import styles from "./Panel.module.css";
export interface PanelProps extends PropsWithChildren {}
export const Panel: FunctionComponent<PanelProps> = ({ children }) => {
return <div className={styles.root}>{children}</div>;
};