11 lines
268 B
TypeScript
11 lines
268 B
TypeScript
import React from "react";
|
|
import PlaceholderPage from "@/components/PlaceholderPage";
|
|
|
|
const AutoGroup: React.FC = () => {
|
|
return (
|
|
<PlaceholderPage title="自动分组" showAddButton addButtonText="新建分组" />
|
|
);
|
|
};
|
|
|
|
export default AutoGroup;
|