File size: 317 Bytes
aa04247 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | /**
* @license
* SPDX-License-Identifier: Apache-2.0
*/
import React from 'react';
export interface SectionProps {
id: string;
title: string;
children: React.ReactNode;
className?: string;
}
export interface Laureate {
name: string;
image: string; // placeholder url
role: string;
desc: string;
} |