Skip to content

Commit 9b50b23

Browse files
committed
Add pages and folders
1 parent 26dc376 commit 9b50b23

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

src/App.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import logo from './logo.svg';
2-
import './App.css';
2+
import './css/App.css';
33

44
function App() {
55
return (
File renamed without changes.

src/pages/index.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const Home = () => {
2+
return (
3+
<div>
4+
<h1>Home Page</h1>
5+
</div>
6+
);
7+
};
8+
9+
export default Home;

0 commit comments

Comments
 (0)