15 lines
454 B
TypeScript
15 lines
454 B
TypeScript
import { Placeholder } from "@/components/Placeholder";
|
|
import { Send } from "lucide-react";
|
|
|
|
export default function DraftsPage() {
|
|
return (
|
|
<Placeholder
|
|
eyebrow="Messaging"
|
|
title="Drafts & sent"
|
|
subtitle="Unsent drafts and scheduled messages"
|
|
icon={<Send size={24} />}
|
|
body="Scheduled sends from the composer land here until they're delivered. Gated by the `drafts` and `scheduledSend` feature flags."
|
|
/>
|
|
);
|
|
}
|