blob: da7f26a431a744dd7fdf72434fd2966ad3123fe1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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;
|