mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 23:35:38 +08:00
9 lines
205 B
TypeScript
9 lines
205 B
TypeScript
|
import React, { type FC } from 'react';
|
||
|
|
||
|
const APITable: FC = () => {
|
||
|
// TODO: implement api table, depend on the new markdown data structure passed
|
||
|
return <>API Table</>;
|
||
|
};
|
||
|
|
||
|
export default APITable;
|