mirror of
https://github.com/shuaiplus/nodewarden.git
synced 2026-06-20 13:00:39 +00:00
20 lines
561 B
TypeScript
20 lines
561 B
TypeScript
import { ArrowUpDown } from 'lucide-preact';
|
|
import { t } from '@/lib/i18n';
|
|
|
|
export default function ImportExportPage() {
|
|
return (
|
|
<div className="stack">
|
|
<section className="card">
|
|
<h3>{t('import_export_title')}</h3>
|
|
<div className="empty" style={{ minHeight: 180 }}>
|
|
<div style={{ textAlign: 'center' }}>
|
|
<ArrowUpDown size={34} style={{ color: '#64748b', marginBottom: 8 }} />
|
|
<div>{t('import_export_under_construction')}</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
);
|
|
}
|
|
|