Blame view

pages/signup/[type]/thankyou.js 268 Bytes
1 2 3 4 5 6 7 8 9 10 11
import React from "react";
import Layout from "../../../components/layout/Layout";
import ThankYou from "../../../components/signup/ThankYou";

export default function ThankYouPage () {
    return (
        <Layout>
            <ThankYou />
        </Layout>
    );
};