Files
Trilium/apps/client/src/services/experimental_features.ts

14 lines
317 B
TypeScript
Raw Normal View History

interface ExperimentalFeature {
id: string;
name: string;
description: string;
}
export const experimentalFeatures: ExperimentalFeature[] = [
{
id: "newLayout",
name: "New Layout",
description: "Try out the new layout for a more modern look and improved usability.",
}
];