Jeremie Pardou-Piquemal před 3 roky
rodič
revize
6a616fa3ce
2 změnil soubory, kde provedl 6 přidání a 4 odebrání
  1. 2 0
      README.md
  2. 4 4
      src/components/SelectedItems.js

+ 2 - 0
README.md

@@ -2,6 +2,8 @@
 
 Play any board game with your friends thanks to this tabletop simulator.
 
+You can try a version [here](https://airboardgame.netlify.app).
+
 ## Installation
 
 You need a recent node version. You can use nvm to initialize your environment.

+ 4 - 4
src/components/SelectedItems.js

@@ -150,10 +150,10 @@ export const SelectedItems = ({}) => {
       {selectedItems.length > 1 && (
         <div>
           <h2>{selectedItems.length} items selected</h2>
-          <button onClick={shuffle}>Shuffle selection</button>
-          <button onClick={align}>Align selection</button>
-          <button onClick={flip}>Flip all</button>
-          <button onClick={unflip}>UnFlip all</button>
+          <button onClick={shuffle}>Shuffle</button>
+          <button onClick={align}>Stack</button>
+          <button onClick={flip}>Flip</button>
+          <button onClick={unflip}>UnFlip</button>
         </div>
       )}
       {selectedItems.length === 1 && (