mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-26 07:19:58 +00:00
* update react version * update reactstrap * optimize code * update react-select version * update react-responsive * update react-chartjs version * update qrocde version * update seafile-editor version * update tldraw editor version * fix code bug
17 lines
359 B
JavaScript
17 lines
359 B
JavaScript
import React from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
import './css/draft.css';
|
|
|
|
export default function Draft() {
|
|
return (
|
|
<div id="draft">
|
|
<h1>Draft module</h1>
|
|
<div>The current module is no longer supported</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const root = createRoot(document.getElementById('wrapper'));
|
|
root.render(<Draft />);
|