mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-18 16:45:11 +00:00
10 lines
180 B
TypeScript
10 lines
180 B
TypeScript
import { TableViewProps } from './Table';
|
|
|
|
export function ViewCards(props: TableViewProps<any>) {
|
|
return (
|
|
<div>
|
|
<div>Cards!</div>
|
|
</div>
|
|
);
|
|
}
|