feat: wip import resource UI

This commit is contained in:
Ahmed Bouhuolia
2024-03-20 04:55:35 +02:00
parent aba06991d4
commit 1d8cec5069
21 changed files with 291 additions and 118 deletions

View File

@@ -0,0 +1,9 @@
import styles from './ImportFileUploadStep.module.scss';
interface ImportFileContainerProps {
children: React.ReactNode;
}
export function ImportFileContainer({ children }: ImportFileContainerProps) {
return <div className={styles.content}>{children}</div>;
}