import React, { createContext, useContext } from 'react'; const ThemeContext = createContext('black'); const ContextSample = () => { const theme = useContext(ThemeContext); const style = { width: '24px', height: '24px', background: theme }; return
; }; export default ContextSample;