Answers for "tailwind import react"

5

how to setup tailwind for reactjs

npm install -D tailwindcss@npm:@tailwindcss/postcss7-compat @tailwindcss/postcss7-compat postcss@^7 autoprefixer@^9
Posted by: Guest on April-17-2021
0

how to use tailwind with react

module.exports = {
  content: [
    "./src/**/*.{js,jsx,ts,tsx}",
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}
Posted by: Guest on May-04-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language