11 lines
268 B
TypeScript
11 lines
268 B
TypeScript
import React from "react";
|
|
import PlaceholderPage from "@/components/PlaceholderPage";
|
|
|
|
const GroupPush: React.FC = () => {
|
|
return (
|
|
<PlaceholderPage title="群发推送" showAddButton addButtonText="新建推送" />
|
|
);
|
|
};
|
|
|
|
export default GroupPush;
|