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