import type { FC } from 'react' import React from 'react' import type { IMainProps } from '@/app/components' import Main from '@/app/components' const App: FC = ({ params, }: any) => { return (
) } export default React.memo(App)