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

View File

@ -0,0 +1,13 @@
import React from 'react'
export default function DogNameTxt(
{name, email, phone}:
{name: string, email: string, phone: string}) {
return (
<div>
<p>Hallo ich bin die <p>{name}!</p></p>
<p>bitte schreib eine Mail an <p>{email}</p>
oder ruf <p>{phone} an,</p>damit ich schnell wieder Heim komme.</p>
</div>
)
}