refactor: image preview plugin (#3457)

This commit is contained in:
Alex Yang
2023-07-29 00:18:28 -07:00
committed by GitHub
parent be3909370e
commit 52809a2783
18 changed files with 129 additions and 45 deletions
+11
View File
@@ -0,0 +1,11 @@
import type { Page } from '@blocksuite/store';
import { ImagePreviewModal } from './component';
export type AppProps = {
page: Page;
};
export const App = ({ page }: AppProps) => {
return <ImagePreviewModal pageId={page.id} workspace={page.workspace} />;
};