export const ResultTile = (props: { home?: number; away?: number }) => { return (
props.away ? "text-accent" : "text-ink"} > {props.home ?? "-"} : props.home ? "text-accent" : "text-ink"} > {props.away ?? "-"}
); };