File tree Expand file tree Collapse file tree 6 files changed +311
-10
lines changed Expand file tree Collapse file tree 6 files changed +311
-10
lines changed Original file line number Diff line number Diff line change 4
4
"homepage" : " ." ,
5
5
"private" : true ,
6
6
"dependencies" : {
7
+ "@emotion/react" : " ^11.10.5" ,
8
+ "@emotion/styled" : " ^11.10.5" ,
9
+ "@fontsource/roboto" : " ^4.5.8" ,
10
+ "@mui/icons-material" : " ^5.11.0" ,
11
+ "@mui/material" : " ^5.11.4" ,
7
12
"@reduxjs/toolkit" : " ^1.8.4" ,
8
13
"@testing-library/jest-dom" : " ^5.16.5" ,
9
14
"@testing-library/react" : " ^13.3.0" ,
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import './App.css' ;
3
- import ScreenWrapper from './pages/Portfolio/features/ScreenWrapper/ScreenWrapper' ;
4
3
import RouterManagement from './routes/router' ;
5
4
6
5
/**
Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ import App from './App';
5
5
import reportWebVitals from './reportWebVitals' ;
6
6
import { BrowserRouter } from 'react-router-dom'
7
7
import { store } from './pages/Portfolio/common/store/store' ;
8
+ import '@fontsource/roboto/300.css' ;
9
+ import '@fontsource/roboto/400.css' ;
10
+ import '@fontsource/roboto/500.css' ;
11
+ import '@fontsource/roboto/700.css' ;
12
+
8
13
9
14
const container = document . getElementById ( 'root' ) ! ;
10
15
const root = createRoot ( container ) ;
@@ -19,7 +24,4 @@ root.render(
19
24
</ React . StrictMode >
20
25
) ;
21
26
22
- // If you want to start measuring performance in your app, pass a function
23
- // to log results (for example: reportWebVitals(console.log))
24
- // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
25
27
reportWebVitals ( console . log ) ;
Original file line number Diff line number Diff line change
1
+ #todo {
2
+ background-color : white ;
3
+ width : 100vw ;
4
+ height : 100vh ;
5
+
6
+ #todo > * {
7
+ background-color : white ;
8
+ }
9
+ }
Original file line number Diff line number Diff line change 1
1
import React from 'react'
2
+ import "./Todo.scss"
2
3
3
4
function Todo ( ) {
4
5
return (
5
- < div > Todo</ div >
6
+ < div id = "todo" > Todo</ div >
6
7
)
7
8
}
8
9
You can’t perform that action at this time.
0 commit comments