feat(nvim): navigate to file and open in editor

This commit is contained in:
Pihkaal
2024-05-31 00:46:26 +02:00
parent 66785d425e
commit a4038ae294
3 changed files with 71 additions and 8 deletions

View File

@@ -1 +1,3 @@
export const NvimEditor = () => <div className="h-full">editor</div>;
export const NvimEditor = (props: { data: string }) => (
<div className="h-full">{props.data}</div>
);