Files
react-samples/helloworld/src/App.js
Tommy Parnell d5173dc34f really stopping
2018-11-03 08:17:07 -04:00

14 lines
243 B
JavaScript

import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
import HelloWorld from './HelloWorld';
class App extends Component {
render() {
return (
<HelloWorld />
);
}
}
export default App;