Skip to content

Instantly share code, notes, and snippets.

import React, { useState, useRef } from "react";
import styles from "./Contact.module.css";
import Container from "../Container";
// Use in Netlify form to encode body data
function encode(data) {
return Object.keys(data)
.map((key) => encodeURIComponent(key) + "=" + encodeURIComponent(data[key]))
.join("&");