ipfs/src/components/Info.tsx

18 lines
330 B
TypeScript

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