Skip to content

Commit

Permalink
Hexlet#649 add pages _app.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
kodsurfer committed Aug 21, 2024
1 parent b1cde4d commit ce7dbc1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pages/_app.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import 'bootstrap/dist/css/bootstrap.min.css';
import '../styles/theme.scss';
import '../styles/prism.css';
import '../styles/custom.css';
import { appWithTranslation, AppProps } from 'next-i18next';

const App = ({ Component, pageProps }: AppProps) => <Component {...pageProps} />;

export default appWithTranslation(App);

0 comments on commit ce7dbc1

Please sign in to comment.