mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-07 01:09:54 +08:00
17 lines
299 B
TypeScript
17 lines
299 B
TypeScript
import React from 'react';
|
|
import { useEditor } from '@/providers/editor-provider';
|
|
import JumpTo from './jumpTo';
|
|
|
|
const Result = () => {
|
|
const { editor, mode, setMode } = useEditor();
|
|
console.log(editor?.page);
|
|
|
|
return (
|
|
<div>
|
|
<JumpTo />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Result;
|