mirror of https://github.com/status-im/consul.git
14 lines
483 B
JavaScript
14 lines
483 B
JavaScript
import UseCaseLayout from '../../layouts/use-cases'
|
|
import TempUseCaseChildren from './_temp-children'
|
|
|
|
export default function ServiceDiscoveryAndHealthCheckingPage() {
|
|
return (
|
|
<UseCaseLayout
|
|
title="Service Discovery and Health Checking"
|
|
description="Discover, Register and Resolve services for application workloads across any cloud. Automatically add and remove services based on health checking."
|
|
>
|
|
<TempUseCaseChildren />
|
|
</UseCaseLayout>
|
|
)
|
|
}
|