2019-03-01 16:49:35 +08:00
|
|
|
import React from 'react';
|
2025-02-14 14:04:25 +08:00
|
|
|
import { createRoot } from 'react-dom/client';
|
2019-03-01 16:49:35 +08:00
|
|
|
|
2019-03-04 22:47:40 +08:00
|
|
|
import './css/draft.css';
|
2019-03-01 16:49:35 +08:00
|
|
|
|
2023-12-08 12:28:07 +08:00
|
|
|
export default function Draft() {
|
|
|
|
return (
|
2024-06-17 22:17:47 +08:00
|
|
|
<div id="draft">
|
2023-12-08 12:28:07 +08:00
|
|
|
<h1>Draft module</h1>
|
|
|
|
<div>The current module is no longer supported</div>
|
|
|
|
</div>
|
|
|
|
);
|
2019-03-04 22:47:40 +08:00
|
|
|
}
|
|
|
|
|
2025-02-14 14:04:25 +08:00
|
|
|
const root = createRoot(document.getElementById('wrapper'));
|
|
|
|
root.render(<Draft />);
|