source: components/FreeflowCard.jsx@ 3a783f2

main
Last change on this file since 3a783f2 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
Line 
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.