1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

renamed SWR config file

This commit is contained in:
Fedor Katurov 2021-11-21 17:16:38 +07:00
parent e8f8e3536d
commit 6ca4c514bf
3 changed files with 6 additions and 7 deletions

View file

@ -5,4 +5,6 @@ const config: SWRConfiguration = {
revalidateOnFocus: false,
};
export const SWRProvider: FC = ({ children }) => <SWRConfig value={config}>{children}</SWRConfig>;
export const SWRConfigProvider: FC = ({ children }) => (
<SWRConfig value={config}>{children}</SWRConfig>
);