import React from 'react' import type { Website } from '@app/types' // Cell export function Cell(props: Website) { return (
  • {props?.domain}
  • ) }