import React, { useContext } from 'react'; import { ImgContext } from '../../utils/ImgContext'; import UnsplashSearch from '../UnsplashSearch'; const BackgroundTheme = ({ config }) => { const { title, author, font, icon, customIcon, bgColor } = config; const { unsplashImage, setUnsplashImage } = useContext(ImgContext); return (
{unsplashImage ?
preview

{title}

{author}

{ customIcon ?
img
:
}
:
}
); } export default BackgroundTheme;