15 lines
374 B
TypeScript
15 lines
374 B
TypeScript
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">
|
|
本周使用CSGO工具箱 62小时
|
|
</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Header;
|