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