UNPKG

smart-react-components

Version:

React UI library, wide variety of editable ready to use Styled and React components.

10 lines (9 loc) 274 B
import React from "react"; import { JSXElementProps } from "../props"; interface Props { children: JSX.Element | JSX.Element[]; url: string; progressBarProps?: JSXElementProps; } declare const ServerRouter: React.FC<Props>; export default ServerRouter;