1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

Compare commits

...

4 Commits
web ... main

Author SHA1 Message Date
Juiçe
ea95946c4e
Update README.md 2023-10-27 22:34:39 +08:00
Juiçe
4de84481a9
Update README.md 2023-10-24 16:17:48 +08:00
Juiçe
2290b246c8
Update editor.tsx 2023-10-24 11:28:59 +08:00
Juiçe
516285e223
Update package.json 2023-10-24 11:28:36 +08:00
3 changed files with 5 additions and 3 deletions

View File

@ -15,7 +15,9 @@
Inke is a Notion-style WYSIWYG editor with AI-powered autocompletions.
See live demo: [inke-web](https://inke.app)
- Live demo: [inke-web](https://inke.app)
- Document: [How to use Inke](https://inke.app/publish/0e1be533-ae66-4ffa-9725-bd6b84899e78)
<img alt="Inke is a Notion-style WYSIWYG editor with AI-powered autocompletions." src="https://inke.app/desktop.png">

View File

@ -41,7 +41,7 @@
"eventsource-parser": "^0.1.0",
"lucide-react": "^0.244.0",
"next": "13.4.8-canary.14",
"inke": "workspace:^",
"inkejs": "workspace:^",
"openai": "^4.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",

View File

@ -1,7 +1,7 @@
"use client";
import { useState } from "react";
import { Editor as InkeEditor } from "inke";
import { Editor as InkeEditor } from "inkejs";
export default function Editor() {
const [saveStatus, setSaveStatus] = useState("Saved");