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