2019-03-02 11:37:17 -05:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import './App.css';
|
2018-03-04 15:43:18 -05:00
|
|
|
|
2019-03-02 11:37:17 -05:00
|
|
|
import ExampleComponent from '{{name}}';
|
2018-03-04 15:43:18 -05:00
|
|
|
|
2019-03-02 11:37:17 -05:00
|
|
|
class App extends Component {
|
|
|
|
render() {
|
|
|
|
return <ExampleComponent text='Modern React component module' />;
|
2018-03-04 15:43:18 -05:00
|
|
|
}
|
|
|
|
}
|
2019-03-02 11:37:17 -05:00
|
|
|
|
|
|
|
export default App;
|