diff --git a/apps/web/src/components/editor/media-panel/index.tsx b/apps/web/src/components/editor/media-panel/index.tsx index f855fa3..51e9a26 100644 --- a/apps/web/src/components/editor/media-panel/index.tsx +++ b/apps/web/src/components/editor/media-panel/index.tsx @@ -3,6 +3,7 @@ import { TabBar } from "./tabbar"; import { MediaView } from "./views/media"; import { useMediaPanelStore, Tab } from "./store"; +import { TextView } from "./views/text"; export function MediaPanel() { const { activeTab } = useMediaPanelStore(); @@ -12,9 +13,7 @@ export function MediaPanel() { audio: (
Audio view coming soon...
), - text: ( -
Text view coming soon...
- ), + text: , stickers: (
Stickers view coming soon... diff --git a/apps/web/src/components/editor/media-panel/views/text.tsx b/apps/web/src/components/editor/media-panel/views/text.tsx new file mode 100644 index 0000000..c38b247 --- /dev/null +++ b/apps/web/src/components/editor/media-panel/views/text.tsx @@ -0,0 +1,9 @@ +export function TextView() { + return ( +
+
+ Default text +
+
+ ); +}