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 function FrequentlyAccess({ files }) { return (
0}> {t("Quick Access")}
{ files && files.map((path, index) => { return (
{Path.basename(path)}
); }) }
{ t("Frequently access folders will be shown here") }
); }