import React from 'react'; const DynamicContext = React.createContext({ attr1: 1, attr2: 2, }); export default DynamicContext;