feat: add electron logo
This commit is contained in:
parent
62531ae987
commit
6d96a12ab6
|
@ -1,5 +1,6 @@
|
||||||
import { useState } from 'react'
|
import { useState } from 'react'
|
||||||
import logo from './logo.svg'
|
import logo from './logo.svg'
|
||||||
|
import electron from './electron.png'
|
||||||
import './App.css'
|
import './App.css'
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
|
@ -8,8 +9,11 @@ function App() {
|
||||||
return (
|
return (
|
||||||
<div className="App">
|
<div className="App">
|
||||||
<header className="App-header">
|
<header className="App-header">
|
||||||
<img src={logo} className="App-logo" alt="logo" />
|
<div className="logos">
|
||||||
<p>Hello Vite + React!</p>
|
<img src={electron} className="App-logo" alt="electron" />
|
||||||
|
<img src={logo} className="App-logo" alt="logo" />
|
||||||
|
</div>
|
||||||
|
<p>Hello Electron + Vite + React!</p>
|
||||||
<p>
|
<p>
|
||||||
<button type="button" onClick={() => setCount((count) => count + 1)}>
|
<button type="button" onClick={() => setCount((count) => count + 1)}>
|
||||||
count is: {count}
|
count is: {count}
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 62 KiB |
Loading…
Reference in New Issue