Files
star-erp/resources/js/Components/ApplicationLogo.tsx
sky121113 ef1fc47cff
All checks were successful
Koori-ERP-Deploy-System / deploy-demo (push) Has been skipped
Koori-ERP-Deploy-System / deploy-production (push) Successful in 55s
登入驗證以及使用者按鈕
2026-01-07 14:44:01 +08:00

12 lines
263 B
TypeScript

import { ImgHTMLAttributes } from 'react';
export default function ApplicationLogo(props: ImgHTMLAttributes<HTMLImageElement>) {
return (
<img
{...props}
src="/logo.png"
alt="小小冰室 Logo"
/>
);
}