penguins-eggs
Version:
A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others
17 lines (16 loc) • 424 B
TypeScript
/**
* ./src/components/location.tsx
* penguins-eggs v.10.0.0 / ecmascript 2020
* author: Piero Proietti
* email: piero.proietti@gmail.com
* license: MIT
*/
import React from 'react';
type LocationProps = {
region?: string;
zone?: string;
language?: string;
dateNumbers?: string;
};
export default function Location({ region, zone, language, dateNumbers }: LocationProps): React.JSX.Element;
export {};