UNPKG

penguins-eggs

Version:

A remaster system tool, compatible with Almalinux, Alpine, Arch, Debian, Devuan, Fedora, Manjaro, Opensuse, Ubuntu and derivatives

26 lines (25 loc) 765 B
/** * ./src/components/summary.tsx * penguins-eggs v.25.7.x / ecmascript 2020 * author: Piero Proietti * email: piero.proietti@gmail.com * license: MIT */ import React from 'react'; type SummaryProps = { erase?: string; filesystemType?: string; hostname?: string; installationDevice?: string; keyboardLayout?: string; keyboardModel?: string; language?: string; message?: string; password?: string; region?: string; rootPassword?: string; username?: string; zone?: string; }; export default function Summary({ erase, filesystemType, hostname, installationDevice, keyboardLayout, keyboardModel, language, message, password, region, rootPassword, username, zone }: SummaryProps): React.JSX.Element; export {};