All checks were successful
Test CI / build (push) Successful in 15s
- 로그인 버튼 비활성화 오류 해결 - 로그인 요칭 및 응답에 따른 토스트 구현
11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
import { StrictMode } from 'react'
|
|
import { createRoot } from 'react-dom/client'
|
|
import './index.css'
|
|
import App from './App.tsx'
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
// <StrictMode>
|
|
<App />
|
|
// </StrictMode>,
|
|
)
|