/* eslint-disable @typescript-eslint/ban-ts-comment */ //@ts-nocheck import React from 'react'; import { Col, Container, Row } from 'components/layout'; import { Text } from 'components/text'; // TODO: Add type from codegen types export const NewItem = ({ title, body, createdAt }) => { return ( {title} {createdAt} {body} ); };