This website works better with JavaScript.
Home
Explore
Help
Sign In
jrtechs
/
jrtechs-GoogleTrendsGame
mirror of
https://github.com/jrtechs/GoogleTrendsGame.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Fixed the operator blunder
master
Unknown
6 years ago
parent
41588135ba
commit
87f4afb031
2 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
googletrendsgame/src/components/RoomListItem.js
+3
-0
googletrendsgame/src/components/UserList.js
+ 1
- 1
googletrendsgame/src/components/RoomListItem.js
View File
@ -2,7 +2,7 @@ import React from 'react';
export
default
(
props
)
=>
{
var
privateString
=
''
if
(
props
.
private
=
false
)
{
if
(
props
.
private
=
=
false
)
{
privateString
=
"Public"
}
else
{
privateString
=
"Private"
+ 3
- 0
googletrendsgame/src/components/UserList.js
View File
@ -0,0 +1,3 @@
import
React
from
'react'
;
function
Write
Preview
Loading…
Cancel
Save