mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 13:08:41 +08:00
ffbb19e090
* chore: enable tsc for demos * chore: site lint * chore: fix lint
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;
|