Skip to content

Instantly share code, notes, and snippets.

@bicky-tmg
Created September 20, 2022 06:20
Show Gist options
  • Save bicky-tmg/02cb152bc17a730d8197f182369935b0 to your computer and use it in GitHub Desktop.
Save bicky-tmg/02cb152bc17a730d8197f182369935b0 to your computer and use it in GitHub Desktop.
import React from "react";
import Form from "./Form";
function App() {
return (
<div className="max-w-xl mx-auto w-full">
<div className="flex justify-center my-12">
<div className="w-full lg:w-11/12 bg-white p-5 rounded-lg shadow-xl">
<h3 className="pt-4 text-2xl text-center font-bold">
Create New Account
</h3>
<Form />
</div>
</div>
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment