File size: 288 Bytes
1e92f2d
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import React, { ReactNode } from 'react'
import { SwitchableThemeProvider } from '../theming/SwitchableThemeProvider'
import '../styles/index.css'

export const RootWrapper = ({ children }: { children: ReactNode }) => (
    <SwitchableThemeProvider>{children}</SwitchableThemeProvider>
)