1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| import React, { Component, Fragment } from "react";
|
| import { Button } from "react-bootstrap";
|
| import "./GoToFolderButton.scss";
|
| export default class GoToFolderButton extends Component {
| static defaultProps = {
| folderUrl: null,
| };
|
| handleClick = () => window.open(this.props.folderUrl, '_blank');;
|
| render() {
| return (
| <Button
| bsStyle={"primary"}
| bsSize={"small"}
| onClick={this.handleClick}
| >
| <i className={"fa fa-folder icon"} />
| Go To Import Folder
| </Button>
| );
| }
| }
|
|