mue/src/features/marketplace/views/Create.jsx

42 lines
1.2 KiB
React
Raw Normal View History

/* eslint-disable no-unused-vars */
import variables from 'config/variables';
import { PureComponent } from 'react';
2023-09-17 11:07:31 +00:00
import { MdOutlineExtensionOff } from 'react-icons/md';
import { Button } from 'components/Elements';
2021-08-14 19:10:48 +00:00
export default class Create extends PureComponent {
constructor() {
super();
2023-09-17 11:07:31 +00:00
this.state = {};
}
render() {
2023-09-17 11:07:31 +00:00
return (
<>
2023-09-17 11:07:31 +00:00
<div className="flexTopMarketplace">
<span className="mainTitle">
{variables.getMessage('modals.main.addons.create.title')}
</span>
</div>
2023-09-17 11:07:31 +00:00
<div className="emptyItems">
<div className="emptyNewMessage">
<MdOutlineExtensionOff />
<span className="title">
2023-09-17 11:07:31 +00:00
{variables.getMessage('modals.main.addons.create.moved_title')}
</span>
<span className="subtitle">
2023-09-17 11:07:31 +00:00
{variables.getMessage('modals.main.addons.create.moved_description')}
</span>
2023-09-17 11:07:31 +00:00
<div className="createButtons">
2024-03-19 21:45:17 +00:00
<Button
type="settings"
label={variables.getMessage('modals.main.addons.create.moved_button')}
/>
</div>
</div>
</div>
</>
);
}
}