penguins-eggs
Version:
A remaster system tool, compatible with Almalinux, Alpine, Arch, Debian, Devuan, Fedora, Manjaro, Opensuse, Ubuntu and derivatives
17 lines (16 loc) • 448 B
TypeScript
/**
* ./src/components/finished.tsx
* penguins-eggs v.25.7.x / ecmascript 2020
* author: Piero Proietti
* email: piero.proietti@gmail.com
* license: MIT
*/
import React from 'react';
type FinishedProps = {
hostName?: string;
installationDevice?: string;
message?: string;
userName?: string;
};
export default function Finished({ hostName, installationDevice, message, userName }: FinishedProps): React.JSX.Element;
export {};