minor readme tweaks

This commit is contained in:
Micah Godbolt
2019-02-27 20:25:28 -08:00
parent 3d69b2846d
commit 35eea2e60d
16 changed files with 62 additions and 42 deletions

View File

@@ -0,0 +1,12 @@
import React from 'react';
export class App extends React.Component {
render() {
let text = 'My App';
return (
<div className="App">
<h2>{text !== '' ? text : 'Default App Name'}</h2>
</div>
);
}
}

View File

@@ -2,8 +2,6 @@ import React from 'react';
export class Counter extends React.Component {
render() {
return (
);
return <p>hello</p>;
}
}