import React, { FC, Fragment, ReactNode } from 'react'; import css from './index.module.css'; import SmartBanner from 'react-smartbanner'; import 'react-smartbanner/dist/main.css'; import './index.css'; export interface AppTeaserProps { title?: string; author?: string; button?: string; storeText?: ReactNode; appMeta?: ReactNode; price?: ReactNode; force?: string; url?: ReactNode; } const AppTeaser: FC = ({ title, author, button, storeText, appMeta, price, force, url, }) => { return (
); }; export default AppTeaser;