text toolbar - delete text button added

This commit is contained in:
Artur AGH
2023-10-27 15:45:49 +02:00
parent 74accdcb14
commit 46d0d98886
25 changed files with 657 additions and 114 deletions

View File

@@ -0,0 +1,15 @@
import { TextInput } from "@/components/layout/sidebar/text-input";
import ImageInput from "@/components/layout/sidebar/image-input";
import { SelectTemplate } from "@/components/layout/sidebar/select-template";
import { Button } from "@/components/ui/button";
import { useAppDispatch } from "@/hooks";
export function Sidebar() {
return (
<div className="flex h-full w-20 flex-col gap-2 p-2">
<TextInput />
<ImageInput />
<SelectTemplate />
</div>
);
}