Skip to content

Commit

Permalink
first page
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoojin9 committed May 1, 2024
1 parent a2887f8 commit 6e9da3a
Show file tree
Hide file tree
Showing 3 changed files with 153 additions and 2 deletions.
147 changes: 147 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "skkuding-week4",
"version": "0.1.0",
"private": true,
"homepage": "https://jwoojin9.github.io/Skkuding-Week4/",
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
Expand All @@ -10,6 +11,7 @@
"@types/node": "^16.18.96",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"gh-pages": "^6.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.0",
Expand All @@ -21,7 +23,9 @@
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": [
Expand Down
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import PokemonDetail from './components/PokemonDetail';

function App() {
return (
<BrowserRouter>
<BrowserRouter basename={process.env.PUBLIC_URL}>
<div className="App">
<nav>
<h1>
Expand Down

0 comments on commit 6e9da3a

Please sign in to comment.