import { DotsThreeVertical } from '@phosphor-icons/react'; import { A, Avatar, Box, BoxLayout, Button, CodeBlock, Flex, H2, ItemsTable, Menu, Table, Text, } from '../../../..'; import OpizeLogo from '../../assets/opize-logo.png'; export const PageContent = () => { return ( {Array.from({ length: 8 }).map((_, index) => ( } name={`Opize User ${index}`} label="hello@opize.me" /> Option 1 Option 2 Option 3 ))} Box Footer Components Link } > Box Content

Table

Column 1 Column 2 Column 3 {Array.from({ length: 3 }).map((_, index) => ( Cell {index} Cell {index} Option 1 Option 1 Option 1 ))}
{'a'.repeat(200)}
); };