25 lines
465 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { CSSProperties } from 'react'
type PointsProps = {
points?: number
}
const styles = {
container: {
paddingBottom: 8,
} as CSSProperties,
points: {
float: 'right',
} as CSSProperties,
}
function Points({ points }: PointsProps) {
return (
<div style={styles.container}>
<h5>Набрано очков: <span style={styles.points}>{points}</span></h5>
</div>
)
}
export default Points