* Chore disable git submodule for web-client and app-backend * Chore add newest source code of app-backend and web-client --------- Co-authored-by: Hien To <tominhhien97@gmail.com>
19 lines
458 B
TypeScript
19 lines
458 B
TypeScript
import React, { useState } from "react";
|
|
import TogglableHeader from "../TogglableHeader";
|
|
|
|
const AdvancedPromptGenerationParams = () => {
|
|
const [expand, setExpand] = useState(true);
|
|
return (
|
|
<>
|
|
<TogglableHeader
|
|
icon={"/icons/unicorn_layers-alt.svg"}
|
|
title={"Generation Parameters"}
|
|
expand={expand}
|
|
onTitleClick={() => setExpand(!expand)}
|
|
/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default AdvancedPromptGenerationParams;
|