mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-13 00:03:27 +10:00
8 lines
137 B
TypeScript
8 lines
137 B
TypeScript
import React from 'react';
|
|
|
|
export type SidebarSection = {
|
|
id: string;
|
|
icon: React.ReactElement;
|
|
component: React.ReactElement;
|
|
};
|