15 lines
301 B
TypeScript
15 lines
301 B
TypeScript
import React from "react";
|
|
import PlaceholderPage from "@/components/PlaceholderPage";
|
|
|
|
const MomentsSync: React.FC = () => {
|
|
return (
|
|
<PlaceholderPage
|
|
title="朋友圈同步"
|
|
showAddButton
|
|
addButtonText="新建同步"
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default MomentsSync;
|