import React, { forwardRef } from 'react' import type { HTMLAttributes } from 'react' export interface TileProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: Cypress, * Testing Library, and Jest). */ testId?: string } const Tile = forwardRef(function Tile( { testId = 'store-tile', children, ...otherProps }, ref ) { return (
  • {children}
  • ) }) export default Tile