not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
336 B

  1. import React from 'react';
  2. export default (props) => {
  3. var privateString =''
  4. if (props.private = false){
  5. privateString = "Public"
  6. } else {
  7. privateString = "Private"
  8. }
  9. return(
  10. <div>
  11. <h1>{props.roomName}</h1>
  12. <h3>`${props.occupancy}/${props.capacity}`</h3>
  13. <p>{privateString}</p>
  14. </div>
  15. )
  16. }