mirror of
https://github.com/fergalmoran/nukeitter.git
synced 2025-12-22 09:51:03 +00:00
12 lines
219 B
TypeScript
12 lines
219 B
TypeScript
import React from "react";
|
|
|
|
const SetupPage = () => {
|
|
return (
|
|
<div className="container flex flex-col items-center mx-auto my-4 md:flex-row md:my-8">
|
|
SetupPage
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default SetupPage;
|