()
| 8 | const CodeContext = React.createContext({}) |
| 9 | |
| 10 | export const useCode = () => { |
| 11 | const value = useContext(CodeContext) |
| 12 | |
| 13 | return value |
| 14 | } |
| 15 | |
| 16 | const CodeProvider = ({ children, initialCode, onChange }) => { |
| 17 | const providedBlocks = useBlocks() |
no outgoing calls
no test coverage detected
searching dependent graphs…