source: components/FreeflowCard.jsx@ faff334

main
Last change on this file since faff334 was b13f93b, checked in by anastasovv <simon@…>, 2 years ago

Made poker tables system and round 1

  • Property mode set to 100644
File size: 248 bytes
RevLine 
[b13f93b]1import React from 'react'
2
3const FreeflowCard = ( { card } ) => {
4 const src = `/cards/${card}.png`;
5
6 return (
7 <div className="card" style={{backgroundImage: `url("${src}")`}}>
8
9 </div>
10 )
11}
12
13export default FreeflowCard
Note: See TracBrowser for help on using the repository browser.