// import React from "react"; import { VariableSizeList as List } from "react-window"; import Message from "../../common/component/Message"; export default function MessageList({ messages = [] }) { const Row = ({ index, style }) => (
); const getItemSize = (index) => messages[index].content_type.startsWith("image") ? 150 : 56; return ( {Row} ); }