mirror of
https://github.com/tormachris/cf-workers-status-page.git
synced 2025-09-21 16:35:15 +02:00
13 lines
238 B
JavaScript
13 lines
238 B
JavaScript
import { locations } from '../functions/helpers'
|
|
|
|
export default function MonitorDayAverage({ location, avg }) {
|
|
return (
|
|
<>
|
|
<br />
|
|
<small>
|
|
{locations[location] || location}: {avg}ms
|
|
</small>
|
|
</>
|
|
)
|
|
}
|