2019-03-01 08:49:35 +00:00
|
|
|
import React from 'react';
|
2022-12-29 04:21:47 +00:00
|
|
|
import ReactDom from 'react-dom';
|
2019-03-01 08:49:35 +00:00
|
|
|
|
2019-03-04 14:47:40 +00:00
|
|
|
import './css/draft.css';
|
2019-03-01 08:49:35 +00:00
|
|
|
|
2023-12-08 04:28:07 +00:00
|
|
|
export default function Draft() {
|
|
|
|
return (
|
|
|
|
<div style={{display: 'flex', flex: 1, flexDirection: 'column', justifyContent: 'center', alignItems: 'center'}}>
|
|
|
|
<h1>Draft module</h1>
|
|
|
|
<div>The current module is no longer supported</div>
|
|
|
|
</div>
|
|
|
|
);
|
2019-03-04 14:47:40 +00:00
|
|
|
}
|
|
|
|
|
2022-12-29 04:21:47 +00:00
|
|
|
ReactDom.render(<Draft />, document.getElementById('wrapper'));
|