feat(web): functionally add recents to servers list

This commit is contained in:
41666 2021-03-13 19:09:50 -05:00
parent f01325cfba
commit 994d7bba2c
4 changed files with 69 additions and 34 deletions

View file

@ -6,6 +6,9 @@ type ServerTemplateProps = Omit<AppShellProps, 'children'>;
export const ServersTemplate = (props: ServerTemplateProps) => (
<AppShell {...props} disableGuildPicker>
<ServersListing guilds={props.guilds}></ServersListing>
<ServersListing
guilds={props.guilds}
recentGuilds={props.recentGuilds}
></ServersListing>
</AppShell>
);