legion-react
v1.0.0
Published
Downloads
3
Readme
Legion UI React
For Local R&D
Creat file main.tsx
and copy this code
import ReactDOM from 'react-dom/client'
import App from './app'
import './style.scss'
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)
create file app.tsx
and import in main.tsx
and then you do anything in app component. And then yarn dev
or npm run dev
Running Local Project
// for run R&D
yarn dev
// or
npm run dev
// for run unit test
yarn test
// or
npm run test
// for run storybook
yarn storybook
// or
npm run storybook