6 lines
177 B
TypeScript
6 lines
177 B
TypeScript
import { PropsWithChildren, StrictMode } from 'react';
|
|
|
|
export function RootProvider({ children }: PropsWithChildren<unknown>) {
|
|
return <StrictMode>{children}</StrictMode>;
|
|
}
|