Remove unused and ignore lock files

This commit is contained in:
2020-06-04 09:13:30 +07:00
parent 8fdca1e803
commit fb0ddbd02c
3 changed files with 3 additions and 5147 deletions

View File

@@ -18,8 +18,6 @@ class BaseContextProvider extends React.Component {
getContext() {
return BaseContext
throw new Error('Please Implement Context')
}
render() {
@@ -27,7 +25,6 @@ class BaseContextProvider extends React.Component {
const Context = this.getContext()
const { children } = this.props
//
return <Context.Provider value={contextReturn}>{children}</Context.Provider>
}
}