mirror of
https://github.com/hwchase17/langchain.git
synced 2026-01-17 09:46:33 +00:00
18 lines
385 B
JavaScript
18 lines
385 B
JavaScript
import React from "react";
|
|
|
|
export function ColumnContainer({children}) {
|
|
return (
|
|
<div style={{ display: "flex", flexWrap: "wrap" }}>
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export function Column({children}) {
|
|
return (
|
|
<div style={{ flex: "1 0 300px", padding: "10px", overflowX: "scroll", zoom: '80%' }}>
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|