import React from 'react'; import ReactCSSTransitionGroup from 'react-addons-css-transition-group'; import { Container, Icon, NgIf } from '../../components/'; import { Link } from 'react-router-dom'; import Path from 'path'; import { t } from '../../locales/'; import './frequently_access.scss'; export class FrequentlyAccess extends React.Component { constructor(props){ super(props); } render(){ return (
0}> Quick Access
{ this.props.files && this.props.files.map(function(path, index){ return (
{Path.basename(path)}
); }) }
{ t("Frequently access folders will be shown here") }
); } }