10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
import * as React from 'react';
|
|
|
|
interface BeerProps{
|
|
name: string;
|
|
};
|
|
|
|
const Beer: React.FunctionComponent<BeerProps> = (props)=> {
|
|
return <div>{props.name}</div>
|
|
};
|
|
export default Beer; |