Skip to content

Instantly share code, notes, and snippets.

@MicroBenz
Created March 11, 2018 14:43
Show Gist options
  • Save MicroBenz/9731a903d532bfe14b95a9ea13094f0a to your computer and use it in GitHub Desktop.
Save MicroBenz/9731a903d532bfe14b95a9ea13094f0a to your computer and use it in GitHub Desktop.
React Context
// Inside app that use ui-lib as dependencies
import { UIKitContext, Image } from 'ui-lib';
const isProduction = process.env.NODE_ENV === 'production';
const mediaPath = isProduction ? 'cloudfront-production' : 'cloudfront-development';
const App = () => (
<UIKitContext prefixPath={mediaPath}>
<h1>Hello World</h1>
<Image image="landing.jpg" />
</UIKitContext>
);
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment