import React from "react";
import { TerminalFlex } from "./terminal-flex.tsx";
export const CenteredBox = ({ children }: { children?: React.ReactNode }) => {
return (
{children}
);
};
export const HeightlessCenteredBox = ({ children }: { children?: React.ReactNode }) => {
return (
{children}
);
};