import React from 'react' import { Box, Stack, Title, Text, Flex, Container } from '@pikku/mantine/core' import { asI18n } from '@pikku/react' interface CandidateSectionProps { title: string example: string description: string children: React.ReactNode } export const CandidateSection: React.FunctionComponent = ({ title, example, description, children }) => { return ( {asI18n(title)} {asI18n(example)} {asI18n(description)} {children} ) }