6 lines
205 B
TypeScript
6 lines
205 B
TypeScript
import type { ReactElement } from 'react';
|
|
import { NewChatWizard } from '@/features/conversations';
|
|
|
|
export default function NewChannelRoute(): ReactElement {
|
|
return <NewChatWizard mode="channel" />;
|
|
}
|