0.0.11 • Published 5 years ago

mui-next v0.0.11

Weekly downloads
-
License
ISC
Repository
github
Last release
5 years ago

mui-next

The simplest SSR helper for Next.js and MaterialUI.

Installing

Run:

npm install mui-next

or:

yarn add mui-next

Usage

Create pages/_app.tsx file:

import { AppProps } from 'next/app';
import MuiNext from 'mui-next';

function MyApp({ Component, pageProps }: AppProps) {
    return (
        <MuiNext>
            <Component {...pageProps} />
        </MuiNext>
    );
}

export default MyApp;
0.0.11

5 years ago

0.0.10

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago