mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-20 19:46:32 +08:00
13 lines
347 B
TypeScript
13 lines
347 B
TypeScript
import { WidgetViewExtension } from '@blocksuite/block-std';
|
|
import { literal, unsafeStatic } from 'lit/static-html.js';
|
|
|
|
import { AFFINE_TOOLBAR_WIDGET } from './toolbar';
|
|
|
|
export * from './toolbar';
|
|
|
|
export const toolbarWidget = WidgetViewExtension(
|
|
'affine:page',
|
|
AFFINE_TOOLBAR_WIDGET,
|
|
literal`${unsafeStatic(AFFINE_TOOLBAR_WIDGET)}`
|
|
);
|