UNPKG

projecthor

Version:

Save, manage, and run project setup commands automatically from the CLI.

8 lines (7 loc) 211 B
import React from 'react'; import { Project } from './types.js'; interface ProjectsProps { projects: Project[]; } export default function Projects({ projects }: ProjectsProps): React.JSX.Element; export {};