feat(nvim): display active file in status bar and use url in editor
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
export const NvimEditor = (props: { source: string | undefined }) => (
|
||||
<div className="h-full">{props.source}</div>
|
||||
);
|
||||
import { useState } from "react";
|
||||
|
||||
export const NvimEditor = (props: { source: string | undefined }) => {
|
||||
const [data, setData] = useState<string>();
|
||||
const [loading, setLoading] = useState(false);
|
||||
|
||||
return <div className="h-full">{props.source}</div>;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user