Untitled

Anonymous
plain_text
09/14/2026 10:35 AM
756 B
3
Indexable
import React from 'react'
import Profile from './Profile'

const Gallery = () => {
  return (
    <>
    <Profile 
        size={100}
        person={{
          name: 'Katsuko Saruhashi',
          imageId: 'YfeOqp2'
        }}
    />
    <Profile 
        size={80}
        person={{
          name: 'Aklilu Lemma',
          imageId: 'OKS67lh'
        }}
    />
    <Profile 
        size={50}
        person={{
          name: 'Lin Lanying',
          imageId: '1bX5QH6'
        }}
    />    
    </>
  );
}

export default Gallery;
Editor is loading...
Leave a Comment