登入驗證以及使用者按鈕
All checks were successful
Koori-ERP-Deploy-System / deploy-demo (push) Has been skipped
Koori-ERP-Deploy-System / deploy-production (push) Successful in 55s

This commit is contained in:
2026-01-07 14:44:01 +08:00
parent 19c60a6126
commit ef1fc47cff
10 changed files with 380 additions and 69 deletions

View File

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