diff --git a/docs/src/demos/React/components/Editor.jsx b/docs/src/demos/React/components/Editor.jsx
deleted file mode 100644
index 8eec95cd..00000000
--- a/docs/src/demos/React/components/Editor.jsx
+++ /dev/null
@@ -1,34 +0,0 @@
-import React, {
- useState, useRef, useEffect, createContext, useContext,
-} from 'react'
-import { Editor as Tiptap } from '@tiptap/core'
-
-export const EditorContext = createContext({})
-
-export const useEditor = () => useContext(EditorContext)
-
-export const Editor = ({
- value, onChange, children, ...props
-}) => {
- const [editor, setEditor] = useState(null)
- const editorRef = useRef(null)
-
- useEffect(() => {
- const e = new Tiptap({
- element: editorRef.current,
- content: value,
- ...props,
- }).on('transaction', () => {
- onChange(e.getJSON())
- })
-
- setEditor(e)
- }, [])
-
- return (
-
- {editorRef.current && children}
-
-
- )
-}
diff --git a/docs/src/demos/React/index.jsx b/docs/src/demos/React/index.jsx
deleted file mode 100644
index 3e0bd73a..00000000
--- a/docs/src/demos/React/index.jsx
+++ /dev/null
@@ -1,69 +0,0 @@
-import React, { useState } from 'react'
-import { defaultExtensions } from '@tiptap/starter-kit'
-import { useEditor, Editor } from '@tiptap/react'
-
-// Menu bar example component
-// useEditor only works for child components of
-const MenuBar = () => {
- const editor = useEditor()
-
- return (
- <>
- editor.chain().focus().unsetAllMarks().run()}>
- Clear formatting
-
- editor.chain().focus().toggleBold().run()}
- >
- Bold
-
- >
- )
-}
-
-export default () => {
- const [value, setValue] = useState({
- type: 'doc',
- content: [
- {
- type: 'paragraph',
- content: [
- {
- type: 'text',
- text: 'rendered in ',
- },
- {
- type: 'text',
- marks: [
- {
- type: 'bold',
- },
- ],
- text: 'react',
- },
- {
- type: 'text',
- text: '!',
- },
- ],
- },
- ],
- })
-
- return (
- <>
-
- alert(JSON.stringify(value))}>Alert state
-
-
-
-
-
- >
- )
-}
diff --git a/docs/src/docPages/installation/react.md b/docs/src/docPages/installation/react.md
index 511150c9..554666d8 100644
--- a/docs/src/docPages/installation/react.md
+++ b/docs/src/docPages/installation/react.md
@@ -7,4 +7,4 @@ The following guide describes how to integrate tiptap with your [React](https://
TODO
-
+