mirror of
https://github.com/TheGreyDiamond/Enlight.git
synced 2026-04-01 07:10:23 +02:00
init
This commit is contained in:
10
enlightApp/app/containers/App.tsx
Normal file
10
enlightApp/app/containers/App.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import React, { ReactNode } from 'react';
|
||||
|
||||
type Props = {
|
||||
children: ReactNode;
|
||||
};
|
||||
|
||||
export default function App(props: Props) {
|
||||
const { children } = props;
|
||||
return <>{children}</>;
|
||||
}
|
||||
Reference in New Issue
Block a user