penguins-eggs
Version:
A remaster system tool, compatible with Almalinux, Alpine, Arch, Debian, Devuan, Fedora, Manjaro, Opensuse, Ubuntu and derivatives
25 lines (24 loc) • 585 B
TypeScript
/**
* ./src/components/users.tsx
* penguins-eggs v.25.7.x / ecmascript 2020
* author: Piero Proietti
* email: piero.proietti@gmail.com
* license: MIT
*/
import React from 'react';
type UsersProps = {
autologin?: boolean;
fullname?: string;
hostname?: string;
password?: string;
rootPassword?: string;
sameUserPassword?: boolean;
username?: string;
};
/**
*
* @param param0
* @returns
*/
export default function Users({ autologin, fullname, hostname, password, rootPassword, sameUserPassword, username }: UsersProps): React.JSX.Element;
export {};