import * as React from 'react' export interface PJHealthLikeBarProps { value: number max: number } export default function PJHealthLikeBar(props: PJHealthLikeBarProps): JSX.Element { const percentage = ((props.value / props.max) * 100) + '%'; return (
) }