@paroicms/front-media-gallery
Version:
Basic media gallery react component for Paroi CMS.
17 lines (16 loc) • 515 B
JavaScript
import en from "../locales/en.json";
import fr from "../locales/fr.json";
export function addFrontMediaGalleryLocales(i18n) {
i18n
.addResourceBundle("en", "translations", {
frontMediaGallery: en,
}, true, true)
.addResourceBundle("fr", "translations", {
frontMediaGallery: fr,
}, true, true);
}
export * from "./MediaGallery";
export * from "./SingleMedia";
export * from "./gallery-types";
export * from "./helpers/http-helper";
export * from "./helpers/isImageGuard";