15
Set Up Tailwind Css With create-react-app and yarn
yarn create react-app react-tailwind-css-stater
yarn add -D tailwindcss postcss autoprefixer
yarn tailwindcss init -p
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {},
},
plugins: [],
};
@tailwind base;
@tailwind components;
@tailwind utilities;
15