import React, { ReactElement, useState } from "react"; import { Button } from "../UI/Button"; import { NetworkBar } from "./NetworkBar"; export default { title: "NetworkBar/NetworkBar", component: NetworkBar, parameters: { componentSubtitle: "Bar showing which blockchain network, the application is connected to.", }, }; export const Default = (): ReactElement => { const [network, setNetwork] = useState("goerli"); return (