mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-28 22:26:41 +07:00
add eslint-plugin-prettier
This commit is contained in:
parent
0e4d2bf44d
commit
ba0604ab9d
69 changed files with 419 additions and 249 deletions
|
@ -4,9 +4,12 @@ import type { HeaderProps } from '~/containers/main/Header/index';
|
|||
|
||||
import styles from './styles.module.scss';
|
||||
|
||||
export const HeaderSSR = dynamic<HeaderProps>(() => import('./index').then(it => it.Header), {
|
||||
ssr: false,
|
||||
loading: () => <div className={styles.wrap} />,
|
||||
});
|
||||
export const HeaderSSR = dynamic<HeaderProps>(
|
||||
() => import('./index').then((it) => it.Header),
|
||||
{
|
||||
ssr: false,
|
||||
loading: () => <div className={styles.wrap} />,
|
||||
},
|
||||
);
|
||||
|
||||
export const HeaderSSRPlaceholder = () => <div className={styles.wrap} />;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue