Skip to content

Commit dff73d2

Browse files
committed
✨ Add VoiceLayout component as a placeholder for the voice feature, displaying a WorkInProgress indicator until the feature is completed.
1 parent 9f21806 commit dff73d2

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { WorkInProgress } from '@repo/design-system/components/ui/work-in-progress';
2+
3+
//TODO: Remove this one once feature is completed
4+
export default function VoiceLayout({
5+
children,
6+
}: { children: React.ReactNode }) {
7+
return <WorkInProgress />;
8+
}

0 commit comments

Comments
 (0)