import React from "react"; import SitesIcon from "../atoms/SitesIcon"; import CoverIcon from "../atoms/CoverIcon"; // import InfoIcon from "../atoms/InfoIcon"; function BottomActions(props) { function renderToggles() { return ( <>
{props.features.USE_SITES ? ( ) : null}
{/* ,
, */}
{props.features.USE_COVER ? ( ) : null}
Made with{" "} TimeMap
Free software from
{" "} Forensic Architecture
); } return
{renderToggles()}
; } export default BottomActions;