import { Experiment, Variation } from 'react-tesfy' import { getTesfyProps } from '../utils' export const getServerSideProps = getTesfyProps(async () => { return { props: {} } }) const IndexPage = () => { return ( <>

Experiments

Experiment 1 - Allocation

Yellow

Blue

Red

Experiment 2 - Audience

Bold

Normal

) } export default IndexPage