summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/src/components/app/sidebars/topology/rack/AddPrefabComponent.js
blob: 75418f9df932117f04258fbd831032eb0cf16b79 (plain)
1
2
3
4
5
6
7
8
9
10
import React from 'react'

const AddPrefabComponent = ({ onClick }) => (
    <div className="btn btn-primary btn-block" onClick={onClick}>
        <span className="fa fa-floppy-o mr-2" />
        Save this rack to a prefab
    </div>
)

export default AddPrefabComponent