This commit is contained in:
2022-12-26 23:56:36 +01:00
parent c894022b31
commit 0187c464db
15 changed files with 204 additions and 6 deletions

View File

@ -4,7 +4,7 @@ export default function Img({pth}: {pth: string})
{
return (
<div>
<img src={'./uploads' + pth} width="300" />
<img src={'./uploads' + pth} />
</div>
)
}