Skip to content

Instantly share code, notes, and snippets.

@hoolymama
hoolymama / App.js
Last active March 18, 2024 09:15
Provide runtime environment to app made with create-react-app
import React, { Component } from "react";
import Navigation from "./Navigation";
import withConfig from "./withConfig";
class App extends Component {
componentWillMount() {
console.log(this.props.config);
}