refactor: general refactor

make barrel files .ts instead of .tsx
move layouts to components directory
This commit is contained in:
zyachel
2023-10-29 00:11:28 +05:30
parent 40eb8a372b
commit 12eaa741ab
12 changed files with 8 additions and 9 deletions

View File

@ -1,5 +1,5 @@
import { GetServerSideProps, InferGetServerSidePropsType } from 'next';
import Layout from 'src/layouts/Layout';
import Layout from 'src/components/layout';
import ErrorInfo from 'src/components/error/ErrorInfo';
import Meta from 'src/components/meta/Meta';
import Results from 'src/components/find';