import React from "react"; import { Cell } from "#/state/jupyter-slice"; import { JupyterLine, parseCellContent } from "#/utils/parse-cell-content"; import { JupytrerCellInput } from "./jupyter-cell-input"; import { JupyterCellOutput } from "./jupyter-cell-output"; interface JupyterCellProps { cell: Cell; } export function JupyterCell({ cell }: JupyterCellProps) { const [lines, setLines] = React.useState([]); React.useEffect(() => { setLines(parseCellContent(cell.content)); }, [cell.content]); if (cell.type === "input") { return ; } return ; }