Merge pull request #253 from learnhouse/feat/add-health-probe

Add simple health check page
This commit is contained in:
Badr B 2024-05-21 19:09:23 +02:00 committed by GitHub
commit 156d6ecb2a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,9 @@
import React from 'react'
function HealthPage() {
return (
<div>OK</div>
)
}
export default HealthPage