blob: 96287bb16f0d59d99cb343e84e94e30d31bc9e6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* 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.css";
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;
|