Answers for "react tailwind css components npm"

0

react tailwind css components npm

import React from 'react';
import ReactDOM from 'react-dom';
import { Button } from 'react-tailwindcss-components';
 
function App() {
  return (
    <Button className="shadow-2xl border-green-400 bg-green-400 rounded font-bold text-white">
      Hello World
    </Button>
  );
}
 
ReactDOM.render(<App />, document.querySelector('#app'));
Posted by: Guest on March-30-2022
0

react tailwind css components npm

// with npm
npm install react-tailwindcss-components
 
// with yarn
yarn add react-tailwindcss-components
Posted by: Guest on March-30-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language