feat: Added "Files Table View" to Labs

This commit is contained in:
Aman Harwara
2022-12-29 02:44:04 +05:30
parent b0c11b1b4d
commit b764296c8f
8 changed files with 28 additions and 15 deletions

View File

@@ -2,13 +2,11 @@ import { isDev } from '@/Utils'
export enum FeatureTrunkName {
Super,
FilesTableView,
ImportTools,
}
const FeatureTrunkStatus: Record<FeatureTrunkName, boolean> = {
[FeatureTrunkName.Super]: isDev && true,
[FeatureTrunkName.FilesTableView]: isDev && true,
[FeatureTrunkName.ImportTools]: isDev && true,
}