mars-v2-frontend/components/Container/index.tsx
gustavomauricio 3e1cc8387f styling wip
2022-09-02 15:40:10 +01:00

14 lines
313 B
TypeScript

import React from "react";
import styles from "./Container.module.css";
type Props = {
children: React.ReactNode;
className?: string;
};
const Container = ({ children, className = "" }: Props) => {
return <div className={`${styles.container} ${className}`}>{children}</div>;
};
export default Container;