1
0
mirror of https://github.com/kremalicious/ipfs.git synced 2024-06-17 18:03:28 +02:00
ipfs/src/components/Info.tsx

18 lines
362 B
TypeScript

import React, { ReactElement } from 'react'
import Status from './Status'
import styles from './Info.module.css'
export default function Info(): ReactElement {
return (
<aside className={styles.info}>
<h2>
<Status type="gateway" />
Gateway
</h2>
<h2>
<Status type="api" /> HTTP API
</h2>
</aside>
)
}