summaryrefslogtreecommitdiff
path: root/frontend/src/components/app/sidebars/topology/room/BackToBuildingComponent.js
blob: 0409dbddfe298a595960c4c321674f4c498d77b4 (plain)
1
2
3
4
5
6
7
8
9
10
import React from "react";

const BackToBuildingComponent = ({ onClick }) => (
  <div className="btn btn-secondary btn-block mb-2" onClick={onClick}>
    <span className="fa fa-angle-left mr-2" />
    Back to building
  </div>
);

export default BackToBuildingComponent;