-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugins.native.ts
More file actions
executable file
·33 lines (30 loc) · 1.04 KB
/
Copy pathplugins.native.ts
File metadata and controls
executable file
·33 lines (30 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import BlueBasePluginConfigPersist from '@bluebase/plugin-config-persist';
import BlueBasePluginJsonSchemaComponents from '@bluebase/plugin-json-schema-components';
import BlueBasePluginLauncher from '@bluebase/plugin-launcher';
import BlueBasePluginReactNativePaper from '@bluebase/plugin-react-native-paper';
import BlueBasePluginResponsiveGrid from '@bluebase/plugin-responsive-grid';
import BlueBasePluginSettingsApp from '@bluebase/plugin-settings-app';
import { MaterialCommunityIcons } from '@bluebase/plugin-vector-icons';
import App1 from './demo/app1';
import App2 from './demo/app2';
import App3 from './demo/app3';
import App4 from './demo/app4';
import App5 from './demo/app5';
import DemoApp from './demo/plugin-settings-app';
import Plugin from './src';
export const plugins = [
BlueBasePluginConfigPersist,
BlueBasePluginJsonSchemaComponents,
BlueBasePluginLauncher,
BlueBasePluginReactNativePaper,
BlueBasePluginResponsiveGrid,
MaterialCommunityIcons,
Plugin,
BlueBasePluginSettingsApp,
DemoApp,
App1,
App2,
App3,
App4,
App5,
];