We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8d702f3 + 16fec71 commit fafc55dCopy full SHA for fafc55d
3 files changed
src/base/NoSsr/NoSsr.tsx
@@ -0,0 +1,7 @@
1
+import { NoSsr as MuiNoSsr, NoSsrProps as MuiNoSsrProps } from '@mui/material';
2
+
3
+export function NoSsr(props: MuiNoSsrProps): JSX.Element {
4
+ return <MuiNoSsr {...props} />;
5
+}
6
7
+export default NoSsr;
src/base/NoSsr/index.ts
@@ -0,0 +1 @@
+export { NoSsr } from './NoSsr';
src/base/index.tsx
@@ -50,6 +50,7 @@ export * from './ListSubheader';
50
export * from './Menu';
51
export * from './MenuItem';
52
export * from './MenuList';
53
+export * from './NoSsr';
54
export * from './OutlinedInput';
55
export * from './Pagination';
56
export * from './Paper';
0 commit comments