/*
 * 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 /*, { useState }*/ from "react";
import "./Form.scss";

const MetaInfoForm = () => {
  return (
    <div className={"MetaInfoForm"}>
      <h1>This section of the app is missing</h1>
      <p>Please look at this waifu instead.</p>
      <img height="300" width="230" src="https://i.redd.it/te8tbxl1r9v61.jpg" alt="Shit where is the waifu"></img>
    </div>
  )
}

export default MetaInfoForm;