1
0
mirror of https://github.com/pavlobu/deskreen.git synced 2025-05-18 16:30:10 -07:00
2020-08-08 17:19:38 +03: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}</>;
}