Reverted to edit edt-308e7f80-d1d7-4d72-9210-72d1422090e9: "Visual edit in Lovable

Edited UI in Lovable"
This commit is contained in:
gpt-engineer-app[bot]
2025-03-21 13:02:57 +00:00
parent 743ae5c598
commit 8193fda43f
5 changed files with 185 additions and 198 deletions

View File

@@ -1,14 +1,5 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App'
import { createRoot } from 'react-dom/client'
import App from './App.tsx'
import './index.css'
import { applySafeAreaInsets } from './utils/safeArea';
// 안전 영역 CSS 변수 초기화
applySafeAreaInsets();
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)
createRoot(document.getElementById("root")!).render(<App />);