Learn how to setup and install @material-tailwind/react with Remix.
@material-tailwind/react
is working with Tailwind CSS classes and you need to have Tailwind CSS installed on your project - Tailwind CSS Installation..
Install @material-tailwind/react as a dependency using NPM by running the following command:
npm i @material-tailwind/react
Install @material-tailwind/react as a dependency using Yarn by running the following command:
yarn add @material-tailwind/react
Install @material-tailwind/react as a dependency using PNPM by running the following command:
pnpm i @material-tailwind/react
Once you install @material-tailwind/react you need to wrap your tailwind css configurations with the withMT()
function coming from @material-tailwind/react/utils.
const withMT = require("@material-tailwind/react/utils/withMT");
module.exports = withMT({
content: ["./app/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
},
plugins: [],
});
@material-tailwind/react comes with a theme provider that set's the default theme/styles for components or to provide your own theme/styles to your components. You need to wrap your entire application with the ThemeProvider
coming from @material-tailwind/react.
On the app/entry.client
put the code bellow.
import { RemixBrowser } from "@remix-run/react";
import { hydrate } from "react-dom";
import { ThemeProvider } from "@material-tailwind/react";
hydrate(
<ThemeProvider>
<RemixBrowser />
</ThemeProvider>,
document
);
Now you're good to go and use @material-tailwind/react in your project.
import { Button } from "@material-tailwind/react";
export default function Example() {
return <Button>Button</Button>;
}