/* * OpenBills - Self hosted browser app to generate and keep track of simple invoices * Version - 0 * Licensed under the MIT license - https://opensource.org/licenses/MIT * * Copyright (c) 2021 Vidhu Kant Sharma */ import React, { Dispatch, SetStateAction } from "react"; import "./../Form.scss"; import { Address } from "./../../../Interfaces/interfaces" interface Props { heading: string address: Address setAddress: Dispatch> } const NewAddressPane: React.FC = (props) => { const address = props.address; return (

{props.heading}

); } export default NewAddressPane;