mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-20 17:34:10 +01:00
9 lines
283 B
TypeScript
9 lines
283 B
TypeScript
|
|
// Container Component
|
||
|
|
const Container = ({ children }: { children: React.ReactNode }) => (
|
||
|
|
<div className="text-message peer flex min-h-[20px] flex-col items-start gap-3 overflow-x-auto break-words peer-[.text-message]:mt-5">
|
||
|
|
{children}
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
|
||
|
|
export default Container;
|