mirror of
https://github.com/TheGreyDiamond/Enlight.git
synced 2026-03-31 23:00:24 +02:00
11 lines
187 B
TypeScript
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}</>;
|
|
}
|