diff --git a/src/components/root-layout/RootLayout.tsx b/src/components/root-layout/RootLayout.tsx index 7800cf49..773bfde4 100644 --- a/src/components/root-layout/RootLayout.tsx +++ b/src/components/root-layout/RootLayout.tsx @@ -1,4 +1,4 @@ -import { FocusStyleManager } from '@blueprintjs/core'; +import { BlueprintProvider, FocusStyleManager } from '@blueprintjs/core'; import { QueryClientProvider } from '@tanstack/react-query'; import { CSSProperties, ReactNode, useCallback, useState } from 'react'; @@ -35,11 +35,15 @@ export function RootLayout(props: RootLayoutProps) { return (
- - - {props.children} - - + + + + {props.children} + + +
); diff --git a/src/pages/demo/App.tsx b/src/pages/demo/App.tsx index 1ffdeb3d..87ff79da 100644 --- a/src/pages/demo/App.tsx +++ b/src/pages/demo/App.tsx @@ -10,14 +10,14 @@ import '@blueprintjs/icons/lib/css/blueprint-icons.css'; export default function App() { return ( - - - - + + + + - - - - + + + + ); }