export function ReputationMeter() { const reputation = 78 const nextLevel = 85 return (

Reputation Score

{reputation}

Next Level

{nextLevel}

{nextLevel - reputation} points until next level

) }