Browse Source

Rename layout files

pull/1893/head
Gabe Kangas 3 years ago
parent
commit
e0c073171d
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA
  1. 0
      web/components/layouts/Main.tsx
  2. 0
      web/components/layouts/SimpleLayout.tsx
  3. 2
      web/pages/_app.tsx
  4. 2
      web/pages/index.tsx

0
web/components/layouts/main.tsx → web/components/layouts/Main.tsx

0
web/components/layouts/simple-layout.tsx → web/components/layouts/SimpleLayout.tsx

2
web/pages/_app.tsx

@ -24,7 +24,7 @@ import { AppProps } from 'next/app'; @@ -24,7 +24,7 @@ import { AppProps } from 'next/app';
import { useRouter } from 'next/router';
import AdminLayout from './admin/admin-layout';
import SimpleLayout from '../components/layouts/simple-layout';
import SimpleLayout from '../components/layouts/SimpleLayout';
function App({ Component, pageProps }: AppProps) {
const router = useRouter();

2
web/pages/index.tsx

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
import { RecoilRoot } from 'recoil';
import Main from '../components/layouts/main';
import Main from '../components/layouts/Main';
export default function Home() {
return (

Loading…
Cancel
Save