Files
testing-tool/entrypoints/popup/pages/TimestampPage.tsx
T
雨霖铃 0b70c0c0c1 feat:
1、移动popup的page、components
2、更新wxt的host权限
3、验证message传递逻辑
2026-02-01 00:21:36 +08:00

16 lines
436 B
TypeScript

import { TimestampToDatetime } from '../components/TimestampToDatetime';
import { DatetimeToTimestamp } from '../components/DatetimeToTimestamp';
import { TimestampExecution } from '../components/TimestampExecution';
const TimestampPage = () => {
return (
<div className="timestamp-utils">
<TimestampExecution />
<TimestampToDatetime />
<DatetimeToTimestamp />
</div>
);
};
export default TimestampPage;