website-common-page
Version:
Common website pages components, such as terms of service, privacy policy, and contact us.
19 lines (18 loc) • 457 B
TypeScript
export interface CommonPageProps {
/** 公司名称 */
companyName: string;
/** 公司网站 URL */
websiteUrl: string;
/** 公司地址 */
address?: string;
/** 联系邮箱 */
contactEmail?: string;
/** 联系电话 */
contactPhone?: string;
/** 最后更新日期 */
lastUpdated?: string;
/** 自定义样式 */
className?: string;
/** 自定义内容 */
customContent?: React.ReactNode;
}