effects divs
This commit is contained in:
parent
f58ad3307b
commit
732ddcb025
@ -137,7 +137,7 @@ function GamePanel(props) {
|
|||||||
: null;
|
: null;
|
||||||
|
|
||||||
const effects = cryp.effects.length
|
const effects = cryp.effects.length
|
||||||
? cryp.effects.map(c => <span key={c.effect}>{c.effect} - {c.duration}T</span>)
|
? cryp.effects.map(c => <div key={c.effect}>{c.effect} - {c.duration}T</div>)
|
||||||
: <div> </div>;
|
: <div> </div>;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
@ -82,7 +82,7 @@ function GameCryp(props) {
|
|||||||
: null;
|
: null;
|
||||||
|
|
||||||
const effects = cryp.effects.length
|
const effects = cryp.effects.length
|
||||||
? cryp.effects.map(c => <span key={c.effect}>{c.effect} - {c.duration}T</span>)
|
? cryp.effects.map(c => <div key={c.effect}>{c.effect} - {c.duration}T</div>)
|
||||||
: <div> </div>;
|
: <div> </div>;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user