localhost geht hop-fly nicht

This commit is contained in:
2022-12-19 22:07:54 +01:00
parent bac04885b0
commit 3657ddf4ae
16 changed files with 301 additions and 28 deletions

10
src/components/Img.tsx Normal file
View File

@ -0,0 +1,10 @@
import React from 'react'
export default function Img({pth}: {pth: string})
{
return (
<div>
<img src={'./uploads' + pth} width="300" />
</div>
)
}