Skip to content

Commit

Permalink
feat: 초기설정의 따른 경로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
kanghaeun committed Jun 26, 2024
1 parent 6a1eca2 commit 6e0e36c
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/main.jsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import './index.css'
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App.jsx";

ReactDOM.createRoot(document.getElementById('root')).render(
ReactDOM.createRoot(document.getElementById("root")).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)
</React.StrictMode>
);

0 comments on commit 6e0e36c

Please sign in to comment.