Skip to content

Instantly share code, notes, and snippets.

@Kethku
Last active October 15, 2020 07:20
Show Gist options
  • Save Kethku/51221a6e3bc9241e1be2d4f7f05c2402 to your computer and use it in GitHub Desktop.
Save Kethku/51221a6e3bc9241e1be2d4f7f05c2402 to your computer and use it in GitHub Desktop.
React Quil
<div id="app"></div>
{
"scriptType": "module",
"styles": [
"font-awesome"
]
}
import React from "http://unpkg.com/react?module";
import ReactDOM from "unpkg.com/react?module";
/*const QuillEditor = () => {
let quillRef = null;
let reactQuillRef = null;
return (
<div>
<p>Test</p>
</div>
)
}*/
function App() {
return (
<div>
<p>Foo</p>
</div>
);
}
ReactDOM.render(<App />, document.getElementById("app"));
body {
background-color: lightblue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment