22 lines
716 B
TypeScript
22 lines
716 B
TypeScript
import { Card } from "@govoplan/core-webui";
|
|
import { Button } from "@govoplan/core-webui";
|
|
export default function SendWizard() {
|
|
return (
|
|
<div className="content-pad">
|
|
<div className="page-heading">
|
|
<h1>Send Wizard</h1>
|
|
</div>
|
|
<div className="dashboard-grid">
|
|
<Card title="Test send">
|
|
<p className="muted">Send one generated message to a test address.</p>
|
|
<Button>Open test-send dialog</Button>
|
|
</Card>
|
|
<Card title="Queue estimate">
|
|
<p className="muted">Estimated duration will be based on ready jobs and rate limits.</p>
|
|
<Button variant="primary">Queue dry run</Button>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|