Add side drawer to display feature guide
This commit is contained in:
22
ui/providers/index.tsx
Normal file
22
ui/providers/index.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
import { DarkModeProvider } from "./dark-mode-provider";
|
||||
import { ErrorBoundaryProvider } from "./error-boundary-provider";
|
||||
import { FeaturesGuideProvider } from "./features-guide-provider";
|
||||
|
||||
type Props = {
|
||||
omitFeatureGuide?: boolean;
|
||||
children: React.ReactNode;
|
||||
};
|
||||
|
||||
export const Providers = (props: Props) => {
|
||||
return (
|
||||
<DarkModeProvider>
|
||||
<ErrorBoundaryProvider>
|
||||
{props.omitFeatureGuide ? (
|
||||
props.children
|
||||
) : (
|
||||
<FeaturesGuideProvider>{props.children}</FeaturesGuideProvider>
|
||||
)}
|
||||
</ErrorBoundaryProvider>
|
||||
</DarkModeProvider>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user