Skip to content

Commit

Permalink
create hello world.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimkeecn committed Jun 15, 2019
1 parent 3f1d47c commit b732bce
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import React from 'react';
import ReactDom from 'react-dom';
import ReactDOM from 'react-dom';

const element = <h1>Hellow World</h1>;

console.log(element);
console.log(element);

ReactDOM.render(element,document.getElementById('root'))

0 comments on commit b732bce

Please sign in to comment.