summaryrefslogtreecommitdiffhomepage
path: root/src/components/Home.jsx
blob: 863d81dff00ae9580c8cc5737c1fc97785ffd251 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import React, { } from "react";
//import { Link } from "react-router-dom";
import GameCard from "./GameCard";

//export default () => (
export default function Home () {
	var handleSubmit = (e) => {
		e.preventDefault() //stops submit from happening

		const formData = new FormData()
		formData.append('game[title]', e.target.title.value)
		formData.append('game[game_file]', e.target.game_file.files[0], e.target.game_file.value)

		for (var pair of formData.entries()) {
			console.log(pair[0] + ', ' + pair[1])
		};

		fetch('http://127.0.0.1:3000/api/v1/games', {
			method: 'post',
			body: formData,
		});
	}
	return(
		<>
		<div>
		<div className="flex flex-col gap-16 max-w-6xl shrink">
			<div className="title font-bold text-6xl font-title">Get To Know Me a Little</div>
			<div className="">
				<div className="jumbotron jumbotron-fluid bg-transparent">
					<div className="container secondary-color">
						<h1 className="text-2xl">Debug! Again</h1>
						<p className="">
Ea optio vitae culpa voluptatem consectetur. Ab quisquam sed ipsum. Perspiciatis minus odit quas qui consequuntur dicta reiciendis a. Nihil minima sed aliquam.
		</p>
						<hr className="my-4" />
				</div>
				</div>
			</div>
		</div>
		</div>
		</>
	);
};