Toggle navigation
Toggle navigation
This project
Loading...
Sign in
HyeonJun Jeon
/
Extended-Calendar
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
HyeonJun Jeon
2022-05-17 04:34:15 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f651d953139e673d83114069caa84ca22d19f62c
f651d953
1 parent
30c4f810
[Style] Structure change
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
13 deletions
src/App.js
src/index.js
src/App.css → src/styles/App.css
src/index.css → src/styles/index.css
src/App.js
View file @
f651d95
import
logo
from
"./logo.svg"
;
import
"./App.css"
;
import
"./styles/App.css"
;
function
App
()
{
return
<
div
className
=
"App"
><
/div>
;
...
...
src/index.js
View file @
f651d95
import
React
from
'react'
;
import
ReactDOM
from
'react-dom/client'
;
import
'./index.css'
;
import
App
from
'./App'
;
import
reportWebVitals
from
'./reportWebVitals'
;
import
React
from
"react"
;
import
ReactDOM
from
"react-dom/client"
;
import
"./styles/index.css"
;
import
App
from
"./App"
;
const
root
=
ReactDOM
.
createRoot
(
document
.
getElementById
(
'root'
));
const
root
=
ReactDOM
.
createRoot
(
document
.
getElementById
(
"root"
));
root
.
render
(
<
React
.
StrictMode
>
<
App
/>
<
/React.StrictMode
>
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals
();
...
...
src/App.css
→
src/
styles/
App.css
View file @
f651d95
File moved
src/index.css
→
src/
styles/
index.css
View file @
f651d95
File moved
Please
register
or
login
to post a comment