import React from "react"; import styles from "./index.module.scss"; import { A2BarrageType } from "@/types"; type Props = { list: A2BarrageType[]; }; function Left4({ list }: Props) { // console.log("-----", list); return (
{list.map((v) => (
{v.authorName}
{v.createTime}
{v.name}
))}
); } const MemoLeft4 = React.memo(Left4); export default MemoLeft4;