@danilandreev/material-docs
Version:
material-docs - react framework for easy creating documentation site in material design style.
21 lines (18 loc) • 509 B
TypeScript
/*
* Author: Andrieiev Danil | danssg08@gmail.com | https://github.com/DanilAndreev
* Copyright (C) 2020.
*/
/// <reference types="react" />
import {TableProps} from "@material-ui/core";
export const displayName: string;
/**
* Table - react component, designed to provide table functional.
* @param {TableProps} props
* @constructor
* @see http://material-docs.com/component-apis/table
* @example
* <Table>
* ...
* </Table>
*/
export default function Table(props: TableProps): JSX.Element;