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 PropTypes from 'prop-types';
|
| import GoToFolderButton from "./components/GoToFolderButton";
| import $ from "jquery"; // Fixes a AMD module definition error due to webpack
|
| export default class TaskView extends Component {
| static propTypes = {
| folderUrl: PropTypes.string.isRequired,
| }
|
| render() {
| const {
| folderUrl,
| } = this.props;
| return (
| <Fragment>
| {folderUrl ?
| <GoToFolderButton
| folderUrl={folderUrl}
| />
| : ""}
| </Fragment>
| );
| }
| }
|
|