wix-style-react
Version:
26 lines (24 loc) • 702 B
JavaScript
import React from 'react';
import TestimonialList from '..';
import Avatar from '../../Avatar';
export default () => (
<TestimonialList
testimonials={[
{
avatar: <Avatar name="Andrew Miller" size="size60" />,
text: 'I love it! This product is exactly what I needed.',
authorName: 'Andrew Miller',
},
{
avatar: <Avatar name="Carolyn Jones" size="size60" />,
text: 'Amazing! It helped me to solve my problems.',
authorName: 'Carolyn Jones',
},
{
avatar: <Avatar name="Harry Pike" size="size60" />,
text: 'A perfect tool for my everyday tasks.',
authorName: 'Harry Pike',
},
]}
/>
);