|
import initialize from '@project/initialize';
|
|
import { createComponent } from '@project/page';
|
|
const { features } = initialize();
|
|
|
|
Object.assign(global, {
|
|
features,
|
|
OakComponent: (options: any) => createComponent(options, features),
|
|
});
|
|
|
|
export default features;
|