UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

14 lines (13 loc) 376 B
import { jsx as _jsx } from "react/jsx-runtime"; import React from "react"; /** * Paragraph items list * @param items Items */ export function PList(props) { const { items } = props; return (_jsx(React.Fragment, { children: items != null && items.map((item, index) => { return _jsx("p", { children: item }, index); }) })); }