0b70c0c0c1
1、移动popup的page、components 2、更新wxt的host权限 3、验证message传递逻辑
16 lines
436 B
TypeScript
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;
|