mirror of
https://codeberg.org/pronounscc/pronouns.cc.git
synced 2025-02-12 23:03:37 +01:00
6 lines
163 B
TypeScript
6 lines
163 B
TypeScript
|
import React from "react";
|
||
|
|
||
|
export default function Container(props: React.PropsWithChildren<{}>) {
|
||
|
return <div className="m-2 lg:m-4">{props.children}</div>;
|
||
|
}
|