feat(web): show recent guilds in masthead

This commit is contained in:
41666 2021-03-13 18:52:40 -05:00
parent 8ace9abf63
commit f01325cfba
8 changed files with 81 additions and 37 deletions

View file

@ -1,11 +1,8 @@
import { AppShell, AppShellProps } from '@roleypoly/design-system/organisms/app-shell';
import { ServersListing } from '@roleypoly/design-system/organisms/servers-listing/ServersListing';
import { GuildSlug } from '@roleypoly/types';
import * as React from 'react';
type ServerTemplateProps = Omit<AppShellProps, 'children'> & {
guilds: GuildSlug[];
};
type ServerTemplateProps = Omit<AppShellProps, 'children'>;
export const ServersTemplate = (props: ServerTemplateProps) => (
<AppShell {...props} disableGuildPicker>