import React from 'react'; const BasicTheme = ({ config }) => { const { title, bgColor, pattern, author, icon, font, customIcon,platform } = config; return (

{title}

{ customIcon ?
img
:
}

{author}

); } export default BasicTheme;