parent
623639f1ac
commit
d85efdaf2a
@ -1,8 +1,8 @@ |
||||
{ |
||||
"arrowParens": "avoid", |
||||
"singleQuote": true, |
||||
"semi": false, |
||||
"semi": true, |
||||
"printWidth": 80, |
||||
"trailingComma": "all", |
||||
"bracketSpacing": false |
||||
} |
||||
} |
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,7 @@ |
||||
import type { AppProps } from 'next/app' |
||||
import type {AppProps} from 'next/app'; |
||||
|
||||
function App({ Component, pageProps }: AppProps) { |
||||
return <Component {...pageProps} /> |
||||
function App({Component, pageProps}: AppProps) { |
||||
return <Component {...pageProps} />; |
||||
} |
||||
|
||||
export default App |
||||
export default App; |
||||
|
@ -1,11 +1,7 @@ |
||||
import type { NextPage } from 'next' |
||||
|
||||
|
||||
import type {NextPage} from 'next'; |
||||
|
||||
const Home: NextPage = () => { |
||||
return ( |
||||
<main>I am a book</main> |
||||
) |
||||
} |
||||
return <main>I am a book</main>; |
||||
}; |
||||
|
||||
export default Home |
||||
export default Home; |
||||
|
@ -0,0 +1 @@ |
||||
declare module 'sqlite3'; |
Loading…
Reference in new issue