mirror of
https://github.com/langgenius/dify.git
synced 2026-05-02 08:28:03 +08:00
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
|