-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
188 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
import { AppProps } from 'next/app'; | ||
import { GlobalStyle } from '../styles/globalStyle'; | ||
|
||
function MyApp({ Component, pageProps }: AppProps) { | ||
const MyApp = ({ Component, pageProps }: AppProps) => { | ||
return ( | ||
<> | ||
<GlobalStyle /> | ||
<Component {...pageProps} /> | ||
</> | ||
); | ||
} | ||
}; | ||
|
||
export default MyApp; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
import type { NextPage } from 'next' | ||
import type { NextPage } from 'next'; | ||
|
||
const Mypage: NextPage = () => { | ||
return ( | ||
<h1>Mypage Page</h1> | ||
) | ||
} | ||
return <h1>Mypage Page</h1>; | ||
}; | ||
|
||
export default Mypage | ||
export default Mypage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
import type { NextPage } from 'next' | ||
import type { NextPage } from 'next'; | ||
|
||
const Search: NextPage = () => { | ||
return ( | ||
<h1>Search Page</h1> | ||
) | ||
} | ||
return <h1>Search Page</h1>; | ||
}; | ||
|
||
export default Search | ||
export default Search; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
import type { NextPage } from 'next' | ||
import type { NextPage } from 'next'; | ||
|
||
const Signin: NextPage = () => { | ||
return ( | ||
<h1>Signin Page</h1> | ||
) | ||
} | ||
return <h1>Signin Page</h1>; | ||
}; | ||
|
||
export default Signin | ||
export default Signin; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
import type { NextPage } from 'next' | ||
import type { NextPage } from 'next'; | ||
|
||
const Signup: NextPage = () => { | ||
return ( | ||
<h1>Signup Page</h1> | ||
) | ||
} | ||
return <h1>Signup Page</h1>; | ||
}; | ||
|
||
export default Signup | ||
export default Signup; |
Oops, something went wrong.
"airbnb-typescript" 적용하기 위해서 추가함