diff --git a/docs/src/demos/Examples/Default/React/index-nope.jsx b/docs/src/demos/Examples/Default/React/index-nope.jsx
deleted file mode 100644
index 171c75a0..00000000
--- a/docs/src/demos/Examples/Default/React/index-nope.jsx
+++ /dev/null
@@ -1,51 +0,0 @@
-// export default () => {
-// const editor = useEditor({
-// content: '
hello react
',
-// onTransaction() {
-// // console.log('update', this)
-// },
-// extensions: [
-// ...defaultExtensions(),
-// // Paragraph.extend({
-// // addNodeView() {
-// // return reactNodeView(() => {
-// // // useEffect(() => {
-// // // console.log('effect')
-// // // }, []);
-
-// // return (
-// //
-// //
-// //
-// // )
-// // })
-// // return ReactNodeViewRenderer(() => {
-// // // useEffect(() => {
-// // // console.log('effect')
-// // // }, []);
-
-// // return (
-// //
-// //
-// //
-// // )
-// // })
-// // },
-// // }),
-// ]
-// })
-
-// return (
-// <>
-// { editor &&
-// editor.chain().focus().toggleBold().run()}
-// className={editor.isActive('bold') ? 'is-active' : ''}
-// >
-// bold
-//
-// }
-//
-// >
-// )
-// }
diff --git a/docs/src/demos/Examples/Default/React/index-ori.jsx b/docs/src/demos/Examples/Default/React/index-ori.jsx
deleted file mode 100644
index e3893834..00000000
--- a/docs/src/demos/Examples/Default/React/index-ori.jsx
+++ /dev/null
@@ -1,167 +0,0 @@
-import React, { useState } from 'react'
-import { defaultExtensions } from '@tiptap/starter-kit'
-import { useEditor, Editor } from '@tiptap/react'
-import './styles.scss'
-
-// useEditor only works for child components of
-const MenuBar = () => {
- const editor = useEditor()
-
- return (
- <>
- editor.chain().focus().toggleBold().run()}
- className={`${editor.isActive('bold') ? 'is-active' : ''}`}
- >
- bold
-
- editor.chain().focus().toggleItalic().run()}
- className={`${editor.isActive('italic') ? 'active' : ''}`}
- >
- italic
-
- editor.chain().focus().toggleStrike().run()}
- className={`${editor.isActive('strike') ? 'active' : ''}`}
- >
- strike
-
- editor.chain().focus().toggleCode().run()}
- className={`${editor.isActive('code') ? 'active' : ''}`}
- >
- code
-
- editor.chain().focus().unsetAllMarks().run()}>
- clear marks
-
- editor.chain().focus().clearNodes().run()}>
- clear nodes
-
- editor.chain().focus().setParagraph().run()}
- className={`${editor.isActive('paragraph') ? 'active' : ''}`}
- >
- paragraph
-
- editor.chain().focus().toggleHeading({ level: 1 }).run()}
- className={`${editor.isActive('heading', { level: 1 }) ? 'active' : ''}`}
- >
- h1
-
- editor.chain().focus().toggleHeading({ level: 2 }).run()}
- className={`${editor.isActive('heading', { level: 2 }) ? 'active' : ''}`}
- >
- h2
-
- editor.chain().focus().toggleHeading({ level: 3 }).run()}
- className={`${editor.isActive('heading', { level: 3 }) ? 'active' : ''}`}
- >
- h3
-
- editor.chain().focus().toggleHeading({ level: 4 }).run()}
- className={`${editor.isActive('heading', { level: 4 }) ? 'active' : ''}`}
- >
- h4
-
- editor.chain().focus().toggleHeading({ level: 5 }).run()}
- className={`${editor.isActive('heading', { level: 5 }) ? 'active' : ''}`}
- >
- h5
-
- editor.chain().focus().toggleHeading({ level: 6 }).run()}
- className={`${editor.isActive('heading', { level: 6 }) ? 'active' : ''}`}
- >
- h6
-
- editor.chain().focus().toggleBulletList().run()}
- className={`${editor.isActive('bulletList') ? 'active' : ''}`}
- >
- bullet list
-
- editor.chain().focus().toggleOrderedList().run()}
- className={`${editor.isActive('orderedList') ? 'active' : ''}`}
- >
- ordered list
-
- editor.chain().focus().toggleCodeBlock().run()}
- className={`${editor.isActive('codeBlock') ? 'active' : ''}`}
- >
- code block
-
- editor.chain().focus().toggleBlockquote().run()}
- className={`${editor.isActive('blockquote') ? 'active' : ''}`}
- >
- blockquote
-
- editor.chain().focus().setHorizontalRule().run()}>
- horizontal rule
-
- editor.chain().focus().setHardBreak().run()}>
- hard break
-
- editor.chain().focus().undo().run()}>
- undo
-
- editor.chain().focus().redo().run()}>
- redo
-
- >
- )
-}
-
-export default () => {
- const [value, setValue] = useState(`
-
- Hi there,
-
-
- this is a basic basic example of tiptap . Sure, there are all kind of basic text styles you’d probably expect from a text editor. But wait until you see the lists:
-
-
-
- That’s a bullet list with one …
-
-
- … or two list items.
-
-
-
- Isn’t that great? And all of that is editable. But wait, there’s more. Let’s try a code block:
-
- body {
- display: none;
-}
-
- I know, I know, this is impressive. It’s only the tip of the iceberg though. Give it a try and click a little bit around. Don’t forget to check the other examples too.
-
-
- Wow, that’s amazing. Good work, boy! 👏
-
- — Mom
-
-`)
-
- return (
- <>
-
-
-
- >
- )
-}