Files
kiss-translator/src/views/Selection/SugCont.js
2024-03-19 11:48:30 +08:00

18 lines
400 B
JavaScript

import Box from "@mui/material/Box";
import Typography from "@mui/material/Typography";
export default function SugCont({ sugs }) {
return (
<Box>
{sugs.map(({ k, v }) => (
<Typography component="div" key={k}>
<Typography>{k}</Typography>
<ul style={{ margin: "0" }}>
<li>{v}</li>
</ul>
</Typography>
))}
</Box>
);
}