diff --git a/frontend/pages/stream/index.js b/frontend/pages/stream/index.js index 5c11e593..06921ccf 100644 --- a/frontend/pages/stream/index.js +++ b/frontend/pages/stream/index.js @@ -1,6 +1,49 @@ +import React, { useContext } from "react"; import { getLayout } from "../../src/layouts/EntriesLayout"; +import StreamEntryDetails from "../../src/components/SteamEntryDetails"; +import UIContext from "../../src/core/providers/UIProvider/context"; +import { + Box, + Heading, + Text, + Stack, + UnorderedList, + ListItem, +} from "@chakra-ui/react"; const Entry = () => { - return ""; + const ui = useContext(UIContext); + + // return ""; + if (ui.currentTransaction) { + return ; + } else + return ( + + <> + + Stream view + + In this view you can follow events that happen on your subscribed + addresses + + + + Click filter icon on right top corner to filter by specific + address across your subscriptions + + + On event cards you can click at right corner to see detailed + view! + + + For any adress of interest here you can copy it and subscribe at + subscription screen + + + + + + ); }; Entry.getLayout = getLayout; export default Entry; diff --git a/frontend/pages/subscriptions.js b/frontend/pages/subscriptions.js index 867bf8ea..5a9cbb5e 100644 --- a/frontend/pages/subscriptions.js +++ b/frontend/pages/subscriptions.js @@ -62,7 +62,6 @@ const Subscriptions = () => {