add readme and dockers and make this presentable lol
This commit is contained in:
@ -1,7 +1,33 @@
|
||||
import RelayForm from "./RelayForm";
|
||||
import "./App.css";
|
||||
import { Layout } from "antd";
|
||||
|
||||
const { Footer: AntFooter } = Layout;
|
||||
|
||||
const App: React.FC = () => {
|
||||
return <RelayForm />;
|
||||
return (
|
||||
<>
|
||||
{" "}
|
||||
<RelayForm />
|
||||
<AntFooter
|
||||
style={{
|
||||
textAlign: "center",
|
||||
position: "fixed",
|
||||
bottom: 0,
|
||||
width: "100%",
|
||||
}}
|
||||
>
|
||||
<p>
|
||||
<a
|
||||
href="https://git.kehilush.com/omri/relay"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
Source Code
|
||||
</a>
|
||||
</p>
|
||||
</AntFooter>
|
||||
</>
|
||||
);
|
||||
};
|
||||
export default App;
|
||||
|
||||
Reference in New Issue
Block a user