import React from 'react' import JavascriptDisplay from '../JavascriptDisplay/JavascriptDisplay' export const TableDocs = ({ tableName, children, }: { tableName: string children?: React.ReactNode }): React.JSX.Element => { return (
{tableName} is a component that allows you to display data in a table format. It is a wrapper around the{' '} react-sticky-table {' '} library.

Some important notes to keep in mind while implementing the{' '} {tableName}:
) }