import { Container } from '@mantine/core' import { Flex, Button } from '@mantine/core' import React from "react" const NavLink = (props: any) =>
  • {props.children}
  • const Text = (props: any) =>

    {props.children}

    export default function Page() { const demoProps = { bg: 'var(--mantine-color-blue-light)', h: 50, mt: 'md', } return ( <> Default Container xs Container 30rem Container without padding ) }