Create all components

This commit is contained in:
hamid zarghami
2025-11-18 14:38:08 +03:30
parent 1a0c869101
commit 8070a3f837
16 changed files with 181 additions and 64 deletions
@@ -8,6 +8,7 @@ import {
LinkSettings,
VideoSettings,
TransformSettings,
GridSettings,
} from "./settings";
type ObjectSettingsProps = {
@@ -60,6 +61,10 @@ const ObjectSettings = ({ selectedObject, onUpdate, onDelete }: ObjectSettingsPr
/>
)}
{selectedObject.type === "grid" && (
<GridSettings selectedObject={selectedObject} onUpdate={onUpdate} />
)}
<TransformSettings selectedObject={selectedObject} onUpdate={onUpdate} />
</div>
);