mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
12 lines
293 B
TypeScript
12 lines
293 B
TypeScript
import { ReactNode } from 'react';
|
|
|
|
import styles from './library-container.module.css';
|
|
|
|
interface LibraryContainerProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export const LibraryContainer = ({ children }: LibraryContainerProps) => {
|
|
return <div className={styles.container}>{children}</div>;
|
|
};
|