mirror of
https://github.com/remvze/moodist.git
synced 2026-03-06 20:13:13 +08:00
10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
import styles from './container.module.css';
|
|
|
|
interface ContainerProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export function Container({ children }: ContainerProps) {
|
|
return <div className={styles.container}>{children}</div>;
|
|
}
|