forked from extern/easydiffusion
wip
This commit is contained in:
parent
445959abbd
commit
28a7c6d3aa
@ -0,0 +1,11 @@
|
||||
import React from "react";
|
||||
|
||||
|
||||
export default function AudioDing() {
|
||||
|
||||
return (
|
||||
<audio controls>
|
||||
<source src="/ding.mp3" type="audio/mp3"/>
|
||||
</audio>
|
||||
);
|
||||
}
|
@ -8,6 +8,7 @@ import { useQueryClient } from "@tanstack/react-query";
|
||||
import { MakeImageKey } from "../../api";
|
||||
|
||||
import CurrentImage from "./currentImage";
|
||||
import AudioDing from "./audioDing";
|
||||
|
||||
import GeneratedImage from "./generatedImage";
|
||||
|
||||
@ -61,6 +62,7 @@ export default function DisplayPanel() {
|
||||
<div className="display-panel">
|
||||
<h1>Display Panel</h1>
|
||||
<div>
|
||||
<AudioDing></AudioDing>
|
||||
<CurrentImage />
|
||||
{completedImages.map((image, index) => {
|
||||
// if(index == 0){
|
||||
|
Loading…
Reference in New Issue
Block a user