add stake orders list

This commit is contained in:
João Geonizeli
2021-08-16 00:58:43 -03:00
parent b065f5dca7
commit 0965333679
27 changed files with 917 additions and 125 deletions

View File

@@ -0,0 +1,27 @@
import type { FC } from "react";
import React from "react";
import websiteLogin from "../assets/vectors/no_data.svg";
type Props = {
historyName: string;
};
export const NoHistory: FC<Props> = ({ historyName }) => {
return (
<section className="text-gray-600 body-font w-full">
<div className="container mx-auto flex px-5 py-24 items-center justify-center flex-col">
<img
className="lg:w-2/6 md:w-3/6 w-5/6 mb-10 object-cover object-center rounded"
alt="hero"
src={websiteLogin}
/>
<div className="text-center lg:w-2/3 w-full">
<h1 className="title-font sm:text-4xl text-3xl mb-4 font-medium text-gray-900">
Você não possui históricos de {historyName}
</h1>
</div>
</div>
</section>
);
};

View File

@@ -1,5 +1,7 @@
import { Unauthenticated } from "./Unauthenticated";
import { NoHistory } from "./NoHistory";
export const Messages = {
Unauthenticated,
NoHistory,
};