ark-react-config
v1.0.1
Published
read global config & make it available with in components
Downloads
2
Readme
ark-react-config
This a simple react library to read global variable values with in components
Install
npm install --save ark-react-config
Usage
import { ArkConfig } from 'ark-react-config'
class Example extends Component {
readGlobalProp(){
ArkConfig.get('obj.two.two');
}
render() {
return <div> Component content here </div>
}
}