mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-29 00:20:04 +01:00
13 lines
436 B
TypeScript
13 lines
436 B
TypeScript
import { FeatureType } from './src/components/sheets/new-feature';
|
|
|
|
export const features: FeatureType[] = [
|
|
{
|
|
title: 'Manage attachments',
|
|
body: 'Now you can go to Settings to view and manage all file & image attachments from one place.'
|
|
},
|
|
{
|
|
title: 'Automatic system theme',
|
|
body: 'User on basic plan can now enable automatic system theme switching (Day/Night). Go to Settings > Appearence to enable it.'
|
|
}
|
|
];
|