Skip to content

Commit 7106b30

Browse files
Merge pull request Complete-Coding#3 from kgaurav8026/main
Fixed visibility of CSS in 1-todo-app-version-one
2 parents f0ad6bb + bf80810 commit 7106b30

File tree

1 file changed

+7
-7
lines changed
  • Projects/1-todo-app-version-one/src

1 file changed

+7
-7
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import React from 'react'
2-
import ReactDOM from 'react-dom/client'
3-
import App from './App.jsx'
4-
import 'bootstrap/dist/css/bootstrap.min.css'
1+
import React from "react";
2+
import ReactDOM from "react-dom/client";
3+
import "bootstrap/dist/css/bootstrap.min.css";
4+
import App from "./App.jsx";
55

6-
ReactDOM.createRoot(document.getElementById('root')).render(
6+
ReactDOM.createRoot(document.getElementById("root")).render(
77
<React.StrictMode>
88
<App />
9-
</React.StrictMode>,
10-
)
9+
</React.StrictMode>
10+
);

0 commit comments

Comments
 (0)