mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
9353a6fb00
Co-authored-by: Opender Singh <opender94@gmail.com> Co-authored-by: James Gatz <jamesgatzos@gmail.com>
12 lines
261 B
TypeScript
12 lines
261 B
TypeScript
import { FC } from 'react';
|
|
|
|
import { useMenuBarVisibility } from '../hooks/settings-hooks';
|
|
import { useSyncMigration } from '../hooks/use-sync-migration';
|
|
|
|
export const AppHooks: FC = () => {
|
|
useSyncMigration();
|
|
useMenuBarVisibility();
|
|
|
|
return null;
|
|
};
|