Reputation: 326
i have a site template with its html, css, and all assets needed , and i need to build a react js application with this template.
My first question is :
My second question is :
Thank you .
Upvotes: 2
Views: 4174
Reputation: 1203
Adding another tool for the second question. You can use DivMagic which lets you convert all CSS and HTML into React components with Tailwind CSS classes with one click.
Note: I built this tool
Upvotes: 0
Reputation: 25110
My suggestion would be
Answer 1
If you already have css ready, you could just import
them in your components, and any further changes could be done using tailwind-css
.
Answer 2
If you are particular about the whole application to have only tailwind classes
then you can convert your css classes
into tailwind-css classes
using https://tailwind-converter.netlify.app/
Upvotes: 1