19 lines
411 B
JavaScript
19 lines
411 B
JavaScript
/**
|
|
* 消息容器
|
|
* @returns { React.JSX.Element }
|
|
*/
|
|
export default function MessageContainer({ children, style, ...props } = {}) {
|
|
return (
|
|
<div style={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
justifyContent: 'flex-end',
|
|
alignItems: 'center',
|
|
...style,
|
|
}}
|
|
{...props}>
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|