mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
import styles from './ImportFileUploadStep.module.scss';
|
|
|
|
interface ImportFileContainerProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export function ImportFileContainer({ children }: ImportFileContainerProps) {
|
|
return <div className={styles.content}>{children}</div>;
|
|
}
|