import { AppShell, AppShellProps } from '@roleypoly/design-system/organisms/app-shell'; import { EditorShell, EditorShellProps, } from '@roleypoly/design-system/organisms/editor-shell'; export const EditorTemplate = ( props: EditorShellProps & Omit ) => { const { guild, onCategoryChange, onMessageChange, onGuildChange, ...appShellProps } = props; return ( ); }; export type EditorErrors = EditorShellProps['errors'];