UNPKG

penguins-eggs

Version:

A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others

17 lines (16 loc) 448 B
/** * ./src/components/finished.tsx * penguins-eggs v.10.0.0 / ecmascript 2020 * author: Piero Proietti * email: piero.proietti@gmail.com * license: MIT */ import React from 'react'; type FinishedProps = { installationDevice?: string; hostName?: string; userName?: string; message?: string; }; export default function Finished({ installationDevice, hostName, userName, message }: FinishedProps): React.JSX.Element; export {};