1
0
mirror of https://github.com/TheGreyDiamond/Enlight.git synced 2026-04-01 07:10:23 +02:00
Files
TheGreyDiamond 015e0779a3 init
2020-11-29 17:43:34 +01:00

11 lines
187 B
TypeScript

import React, { ReactNode } from 'react';
type Props = {
children: ReactNode;
};
export default function App(props: Props) {
const { children } = props;
return <>{children}</>;
}