Skip to content

Instantly share code, notes, and snippets.

@marcoemrich
Created July 3, 2020 14:33
Show Gist options
  • Save marcoemrich/9537b3f72ae28f816b4bb7e714dcb97c to your computer and use it in GitHub Desktop.
Save marcoemrich/9537b3f72ae28f816b4bb7e714dcb97c to your computer and use it in GitHub Desktop.
JS-Testing: cell.js
import React from 'react'
export const Cell = ({ owner = '', cellNr, onClick } = { owner: '' }) =>
<button
className={`cell cell_${cellNr}`}
data-cell-nr={cellNr}
onClick={onClick}
data-testid="cell">
{owner}
</button>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment