import { DotsThreeVertical } from '@phosphor-icons/react'; import { A, Avatar, Box, Button, CodeBlock, Flex, H2, ItemsTable, Menu, PageLayout, PaneList, Table, Text, } from '../../../..'; import OpizeLogo from '../../assets/opize-logo.png'; export const PageContent = () => { return ( Item 1 Item 2 Item 3 Item 4 Item 5 {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)}
); };