From a870ddfd1b860da40459cf9f7bd8761ca43d2db9 Mon Sep 17 00:00:00 2001 From: Manuel Aristaran Date: Tue, 23 Feb 2016 19:01:33 -0500 Subject: [PATCH] reproduces bdefore/universal-redux#86 --- src/containers/App/App.js | 4 +++- src/containers/App/App.scss | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 src/containers/App/App.scss diff --git a/src/containers/App/App.js b/src/containers/App/App.js index 2a368f1..c1ddf5a 100644 --- a/src/containers/App/App.js +++ b/src/containers/App/App.js @@ -1,7 +1,9 @@ import React, { Component } from 'react'; +import styles from './App.scss'; + export default class App extends Component { render() { - return (
Hello Universal Redux!
); + return (
Hello Universal Redux!
); } } diff --git a/src/containers/App/App.scss b/src/containers/App/App.scss new file mode 100644 index 0000000..afa2af6 --- /dev/null +++ b/src/containers/App/App.scss @@ -0,0 +1,3 @@ +.App { + font-weight: bold; +}