@brizy/media-gallery
Version:
11 lines (10 loc) • 389 B
JavaScript
import React from "react";
import { EmptyStack } from "../../EmptyStack";
import { useTranslation } from "../../../locale/useTranslation";
export var MultipleSelected = function() {
var t = useTranslation().t;
return /*#__PURE__*/ React.createElement(EmptyStack, {
title: t("Multiple Files Selected"),
description: t("Can't show multiple files details")
});
};