@plteam/chat-ui
Version:
CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript
12 lines (11 loc) • 370 B
JavaScript
import * as React from 'react';
import Table from '@mui/material/Table';
import Box from '@mui/material/Box';
const MessageMarkdownTable = (props) => {
return (React.createElement(Box, { sx: {
overflowX: 'auto',
marginTop: 1,
} },
React.createElement(Table, { ...props })));
};
export default MessageMarkdownTable;