12 lines
148 B
TypeScript
12 lines
148 B
TypeScript
![]() |
import React from 'react'
|
||
|
|
||
|
const EndpointList = () => {
|
||
|
return (
|
||
|
<div>
|
||
|
<h1>Endpoints</h1>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default EndpointList
|