upgrade to react18

This commit is contained in:
Proddy
2022-05-22 13:57:17 +02:00
parent e8387b363f
commit 22668d76ee
13 changed files with 2491 additions and 1725 deletions

View File

@@ -4,3 +4,5 @@ export * from './route';
export * from './submit';
export * from './time';
export * from './useRest';
export * from './props';

View File

@@ -0,0 +1,3 @@
export interface RequiredChildrenProps {
children: React.ReactNode;
}