This is just a technology testing project based on Create React App and TailwindCSS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
518B

  1. import React from 'react';
  2. import ReactDOM from 'react-dom';
  3. import './assets/styles/.index.css';
  4. import App from './App';
  5. import * as serviceWorker from './serviceWorker';
  6. ReactDOM.render(
  7. <React.StrictMode>
  8. <App />
  9. </React.StrictMode>,
  10. document.getElementById('root')
  11. );
  12. // If you want your app to work offline and load faster, you can change
  13. // unregister() to register() below. Note this comes with some pitfalls.
  14. // Learn more about service workers: https://bit.ly/CRA-PWA
  15. serviceWorker.unregister();