shifted to parcel, styled-components

This commit is contained in:
ManishMadan2882
2024-03-05 21:15:58 +05:30
parent 5fffa8e9db
commit ae929438a5
33 changed files with 8187 additions and 9855 deletions

View File

@@ -1,10 +1,6 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.tsx'
import './index.css'
import { createRoot } from 'react-dom/client';
import App from './App.tsx';
import React from 'react';
const root = createRoot(document.getElementById('app') as HTMLElement);
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)
root.render(<App />);