mirror of
https://github.com/voltbonn/profile-picture-generator.git
synced 2024-12-22 07:45:04 +00:00
removed header tag
and button code-indent
This commit is contained in:
parent
ba33f9b1ed
commit
403f8b02c1
1 changed files with 1 additions and 3 deletions
|
@ -58,15 +58,13 @@ function App() {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="App">
|
<div className="App">
|
||||||
<header className="App-header">
|
|
||||||
<input type="file" onChange={handleImage} />
|
<input type="file" onChange={handleImage} />
|
||||||
<img src={HeaderImage} className="HeaderImage" />
|
<img src={HeaderImage} className="HeaderImage" />
|
||||||
|
|
||||||
<img src={combinedImage} className="App-logo" alt="Finished Frame" />
|
<img src={combinedImage} className="App-logo" alt="Finished Frame" />
|
||||||
|
|
||||||
<button onClick={() => download(combinedImage, "volt-profile-picture.png", "image/png")}>Download Profile Picture</button>
|
|
||||||
</header>
|
|
||||||
<FrameChooser onFrameChange={handleFrameURL} />
|
<FrameChooser onFrameChange={handleFrameURL} />
|
||||||
|
<button onClick={() => download(combinedImage, "volt-profile-picture.png", "image/png")}>Download Profile Picture</button>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue