mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-17 16:00:16 -07: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}</>;
|
|
}
|