UNPKG

@gorazdo/material-you

Version:

Material You theme for @material-ui library

6 lines (5 loc) 243 B
import React, { createContext } from "react"; const MaterialYouContext = createContext({}); export const MaterialYouProvider = ({ children }) => { return (React.createElement(MaterialYouContext.Provider, { value: {} }, children)); };