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