mirror of
https://github.com/zhigang1992/reactfire.git
synced 2026-06-18 15:38:54 +08:00
8 lines
106 B
JavaScript
8 lines
106 B
JavaScript
import React from 'react';
|
|
|
|
const App = props => {
|
|
return <h1>Hello World</h1>;
|
|
};
|
|
|
|
export default App;
|