chore: 重构旧前端

This commit is contained in:
CrescentLeaf
2025-04-13 23:30:05 +08:00
parent fdf6987889
commit c03649d705
5 changed files with 110 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
export default function MessageContainer({ children }) {
return (
<div style={{
display: 'flex',
flexDirection: 'column',
justifyContent: 'flex-end',
alignItems: 'center',
paddingTop: '10px',
paddingBottom: '14px'
}}>
{children}
</div>
)
}