kopia lustrzana https://github.com/bugout-dev/moonstream
fixing StreamEntry
rodzic
ae8f789ca3
commit
6afd9d4542
|
@ -1,10 +1,21 @@
|
||||||
import React, { useContext } from "react";
|
import React, { useContext, useEffect, useState } from "react";
|
||||||
import { Flex, Text, IconButton, Tag } from "@chakra-ui/react";
|
import {
|
||||||
|
Flex,
|
||||||
|
Text,
|
||||||
|
IconButton,
|
||||||
|
Stack,
|
||||||
|
Tooltip,
|
||||||
|
useClipboard,
|
||||||
|
Heading,
|
||||||
|
Image,
|
||||||
|
useMediaQuery,
|
||||||
|
} from "@chakra-ui/react";
|
||||||
import moment from "moment";
|
import moment from "moment";
|
||||||
import { ViewIcon } from "@chakra-ui/icons";
|
import { ArrowRightIcon } from "@chakra-ui/icons";
|
||||||
import { useRouter } from "../core/hooks";
|
import { useRouter } from "../core/hooks";
|
||||||
import UIContext from "../core/providers/UIProvider/context";
|
import UIContext from "../core/providers/UIProvider/context";
|
||||||
import { useQuery } from "react-query";
|
import { useToast } from "../core/hooks";
|
||||||
|
|
||||||
|
|
||||||
const StreamEntry = ({ entry, filterCallback, filterConstants }) => {
|
const StreamEntry = ({ entry, filterCallback, filterConstants }) => {
|
||||||
const ui = useContext(UIContext);
|
const ui = useContext(UIContext);
|
||||||
|
|
Ładowanie…
Reference in New Issue