import React from "react";
import classNames from "classnames";
import styles from "./Layout.module.css";
export function Content({ children, className, ...rest }) {
return (
{children}
);
}
export function Center({ children, className, ...rest }) {
return (
{children}
);
}
export function Modal({ children, className, ...rest }) {
return (
{children}
);
}
export function Info({ children, className, ...rest }) {
return (
{children}
);
}