UNPKG

sriracha-ui

Version:

A react style library build with styled-components, and material ui theme.

12 lines (9 loc) 281 B
import React from "react"; export const ThemeModeContext = React.createContext([{}, () => {}]); export default function ThemeModeProvider({ theme, children }) { return ( <ThemeModeContext.Provider value={{ theme }}> {children} </ThemeModeContext.Provider> ); }