penguins-eggs
Version:
A remaster system tool, compatible with Almalinux, Alpine, Arch, Debian, Devuan, Fedora, Manjaro, Opensuse, Ubuntu and derivatives
20 lines (19 loc) • 505 B
TypeScript
/**
* ./src/components/network.tsx
* penguins-eggs v.25.7.x / ecmascript 2020
* author: Piero Proietti
* email: piero.proietti@gmail.com
* license: MIT
*/
import React from 'react';
type NetworkProps = {
address?: string;
addressType?: string;
dns?: string;
domain?: string;
gateway?: string;
iface?: string;
netmask?: string;
};
export default function Network({ address, addressType, dns, domain, gateway, iface, netmask }: NetworkProps): React.JSX.Element;
export {};