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; +}