Skip to content
This repository has been archived by the owner on Jan 18, 2023. It is now read-only.

Commit

Permalink
style: import css
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewagain committed Nov 12, 2016
1 parent 5be9172 commit 13a72f9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/component/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React from 'react';
import Display from './Display';
import ButtonPanel from './ButtonPanel';
import calculate from '../logic/calculate';
import './App.css';

class App extends React.Component {
constructor(props) {
Expand Down
1 change: 1 addition & 0 deletions src/component/Button.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import './Button.css';

class Button extends React.Component {
handleClick = () => {
Expand Down
1 change: 1 addition & 0 deletions src/component/ButtonPanel.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from 'react';
import Button from './Button';
import './ButtonPanel.css';

class ButtonPanel extends React.Component {
handleClick = (buttonName) => {
Expand Down
1 change: 1 addition & 0 deletions src/component/Display.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import './Display.css';

class Display extends React.Component {
render() {
Expand Down

0 comments on commit 13a72f9

Please sign in to comment.