mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-05 04:55:14 +00:00
docs[minor]: lcel why page (#14089)
This commit is contained in:
17
docs/src/theme/Columns.js
Normal file
17
docs/src/theme/Columns.js
Normal file
@@ -0,0 +1,17 @@
|
||||
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: "clip" }}>
|
||||
{children}
|
||||
</div>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user