We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88b2ad4 commit 65aad70Copy full SHA for 65aad70
src/components/App.js
@@ -1,16 +1,15 @@
1
+import React from 'react'
2
+
3
import '../assets/css/App.css'
-import React, { Component } from 'react'
4
-class App extends Component {
5
- render() {
6
- return (
7
- <div>
8
- <h1>Hello, Electron!</h1>
+function App() {
+ return (
+ <div>
+ <h1>Hello, Electron!</h1>
9
10
- <p>I hope you enjoy using basic-electron-react-boilerplate to start your dev off right!</p>
11
- </div>
12
- )
13
- }
+ <p>I hope you enjoy using basic-electron-react-boilerplate to start your dev off right!</p>
+ </div>
+ )
14
}
15
16
export default App
0 commit comments