UNPKG

@shopify/react-network

Version:

A collection of components that allow you to set common HTTP headers from within your React application.

8 lines (7 loc) 180 B
import { StatusCode } from '@shopify/network'; interface Props { url: string; code?: StatusCode; } export default function Redirect({ url, code }: Props): null; export {};