This commit is contained in:
2024-11-29 14:39:11 +01:00
parent 257545a928
commit 1d1c09bcdd
3 changed files with 37 additions and 15 deletions

10
src/Beer.tsx Normal file
View File

@@ -0,0 +1,10 @@
import * as React from 'react';
interface BeerProps{
name: string;
};
const Beer: React.FunctionComponent<BeerProps> = (props)=> {
return <div>{props.name}</div>
};
export default Beer;