feat: Extend Apps page with search and data

This commit is contained in:
Ali BARIN
2021-10-09 00:16:24 +02:00
parent e0ab059744
commit c9079db77a
13 changed files with 198 additions and 41 deletions

View File

@@ -1,4 +1,6 @@
export const DASHBOARD = '/dashboard';
export const APPS = '/apps';
export const FLOWS = '/flows';
export const EXPLORE = '/explore';
export const EXPLORE = '/explore';
export const APP_PATH = (appSlug: string) => `/app/${appSlug}`;
export const APP_PATH_PATTERN = '/app/:slug';