import React from 'react' import { View, StyleSheet } from '@react-pdf/renderer' const styles = StyleSheet.create({ column: { flexDirection: 'column' }, row: { flexDirection: 'row' } }) interface ColumnProps { children: React.ReactNode style?: object title?: string } export const Column: React.FC = ({ children, title = '', style }) => ( // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-expect-error {children} ) interface RowProps { children: React.ReactNode style?: object title?: string } export const Row: React.FC = ({ children, style }) => ( // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-expect-error {children} )