docs[minor]: lcel why page (#14089)

This commit is contained in:
Bagatur
2023-12-01 16:13:31 -08:00
committed by GitHub
parent cbe4753e1a
commit 340b42d8ee
6 changed files with 1167 additions and 10 deletions

17
docs/src/theme/Columns.js Normal file
View 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>
)
}