File size: 292 Bytes
1e92f2d
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import Editor from '@react-page/editor';
import React from 'react';
import { cellPlugins } from '../plugins/cellPlugins';
import { demo } from '../sampleContents/demo';

export default function ReadOnlyBare() {
  return <Editor cellPlugins={cellPlugins} value={demo} lang="en" readOnly />;
}