Answers for "How to set up tailwind CSS in ReactJS"

1

how to properly install tailwind css in react

@import "tailwindcss/base";

@import "tailwindcss/components";

@import "tailwindcss/utilities";
Posted by: Guest on December-24-2020
0

tailwind css in react

// src/index.js
  import React from 'react';
  import ReactDOM from 'react-dom';
+ import './index.css';
  import App from './App';
  import reportWebVitals from './reportWebVitals';

  ReactDOM.render(
    <React.StrictMode>
      <App />
    </React.StrictMode>,
    document.getElementById('root')
  );

  // ...
Posted by: Guest on August-28-2021

Code answers related to "How to set up tailwind CSS in ReactJS"

Code answers related to "Javascript"

Browse Popular Code Answers by Language