mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-12 15:52:56 +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;
|
|
};
|