Files
cstb-next/src/components/window/Header.tsx

15 lines
371 B
TypeScript
Raw Normal View History

2024-09-20 23:15:42 +08:00
const Header = () => {
return (
<div className="pt-6 select-none pb-9" data-tauri-drag-region>
<h1 className="text-xl font-medium tracking-wide w-fit">
Faze.Rop紫本人
</h1>
<p className="text-sm font-light tracking-wide text-zinc-400 w-fit">
2024-09-21 00:25:31 +08:00
使CS工具箱 114
2024-09-20 23:15:42 +08:00
</p>
</div>
2024-11-11 10:04:00 +08:00
)
}
2024-09-20 23:15:42 +08:00
2024-11-11 10:04:00 +08:00
export default Header