mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-12-26 08:58:54 +01:00
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 { MakeImageKey } from "../../api";
|
||||||
|
|
||||||
import CurrentImage from "./currentImage";
|
import CurrentImage from "./currentImage";
|
||||||
|
import AudioDing from "./audioDing";
|
||||||
|
|
||||||
import GeneratedImage from "./generatedImage";
|
import GeneratedImage from "./generatedImage";
|
||||||
|
|
||||||
@ -61,6 +62,7 @@ export default function DisplayPanel() {
|
|||||||
<div className="display-panel">
|
<div className="display-panel">
|
||||||
<h1>Display Panel</h1>
|
<h1>Display Panel</h1>
|
||||||
<div>
|
<div>
|
||||||
|
<AudioDing></AudioDing>
|
||||||
<CurrentImage />
|
<CurrentImage />
|
||||||
{completedImages.map((image, index) => {
|
{completedImages.map((image, index) => {
|
||||||
// if(index == 0){
|
// if(index == 0){
|
||||||
|
Loading…
Reference in New Issue
Block a user