added Image to components

This commit is contained in:
srgooglo 2022-06-01 21:41:01 +02:00
parent f46b3a4bf7
commit 2af42b80e7
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,6 @@
import React from "react"
import { LazyLoadImage } from "react-lazy-load-image-component"
import "react-lazy-load-image-component/src/effects/blur.css"
export default (props) => <LazyLoadImage {...props} effect="blur" />

View File

@ -23,6 +23,7 @@ export { default as Navigation } from "./Navigation"
export { default as ImageUploader } from "./ImageUploader"
export { default as ImageViewer } from "./ImageViewer"
export { default as Login } from "./Login"
export { default as Image } from "./Image"
// BUTTONS
export { default as LikeButton } from "./LikeButton"