文件操作 - index.tsx
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/give/src/Views/Components/ListTable/BlankSlate/index.tsx
编辑文件内容
import {__} from '@wordpress/i18n'; import styles from './BlankSlate.module.scss'; interface BlankSlateProps { imagePath: string; description: string; href: string; linkText: string; } export default function BlankSlate({imagePath, description, href, linkText}: BlankSlateProps) { return ( <div className={styles.container}> <img src={imagePath} alt={description} /> <h3>{description}</h3> <p className={styles.helpMessage}> {__('Need help? Learn more about', 'give')}{' '} <a target="_blank" href={href}> {linkText} </a> </p> </div> ); }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件