visionx / types.ts
gaball's picture
Upload 13 files
aa04247 verified
Raw
History Blame Contribute Delete
317 Bytes
/**
* @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;
}