blob: 5d9e3c3eaecf00a36935c17ca7c4b1baa8b70b0e (
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.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;
|