We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, can you take a look at this example? https://codesandbox.io/s/tender-dew-fwwcf?file=/src/App.js
Here all values added from start.
I think it's from the wrong position of cursor after input anything.
The text was updated successfully, but these errors were encountered:
@surohak https://codesandbox.io/s/react-markdown-editor-ybpce?file=/src/App.js
Can't use state control, I need to look into it.
import MarkdownEditor from "@uiw/react-markdown-editor"; import { useState } from "react"; import "./styles.css"; export default function App() { const [markdownVal, setMarkdownVal] = useState(""); console.log("markdownVal:", markdownVal); return ( <div className="App"> <MarkdownEditor value="# title" onChange={(editor, data, value) => { setMarkdownVal(value); }} /> </div> ); }
Sorry, something went wrong.
ok, I think it's will be good with state control.
No branches or pull requests
Hi, can you take a look at this example?
https://codesandbox.io/s/tender-dew-fwwcf?file=/src/App.js
Here all values added from start.
I think it's from the wrong position of cursor after input anything.
The text was updated successfully, but these errors were encountered: