Skip to content

Commit

Permalink
refactor(examples): move styles folder into src
Browse files Browse the repository at this point in the history
  • Loading branch information
belgattitude committed Nov 21, 2022
1 parent 7923af3 commit af6d982
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/nextjs-app/src/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import '../../styles/globals.css';
import '../styles/globals.css';
import type { AppProps } from 'next/app';

function MyApp({ Component, pageProps }: AppProps) {
Expand Down
2 changes: 1 addition & 1 deletion examples/nextjs-app/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { HttpBadRequest } from '@belgattitude/http-exception';
import type { NextPage } from 'next';
import Head from 'next/head';
import Image from 'next/image';
import styles from '../../styles/Home.module.css';
import styles from '../styles/Home.module.css';

const Home: NextPage = () => {
const error = new HttpBadRequest('hello');
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit af6d982

Please sign in to comment.