/MCS-Task

Primary LanguageJavaScript

MCS-Task

Setup instructions

  1. Move into the directory
    cd front-end
  1. Install dependencies
    npm i
  1. Run the server
    npm run dev

How to setup taildinw in your project Link

  1. Create the tailwind.config.js file
    npx tailwindcss init -p
  1. Add the files and extensions to tailwind config in the content property
  content: [
    "./index.html",
    "./src/**/*.{js,ts,jsx,tsx}",
  ],
  1. Add the tailwind directives on the top of index.css file
    @tailwind base;
    @tailwind components;
    @tailwind utilities;
  1. Then run the server, tailwind should be integrated....

Adding plugins and dependencies

    npm install react-router-dom react-icons @tailwindcss/line-clamp