fix imports
This commit is contained in:
parent
9d6ac4ddc2
commit
e17fdbfc7a
|
@ -0,0 +1 @@
|
||||||
|
export { Author } from './author'
|
|
@ -1,3 +1,5 @@
|
||||||
|
import { useState } from 'react'
|
||||||
|
|
||||||
import { PinIcon } from '@status-im/icons/16'
|
import { PinIcon } from '@status-im/icons/16'
|
||||||
import { View } from 'react-native'
|
import { View } from 'react-native'
|
||||||
import { Stack, styled, Unspaced, XStack, YStack } from 'tamagui'
|
import { Stack, styled, Unspaced, XStack, YStack } from 'tamagui'
|
||||||
|
@ -45,8 +47,8 @@ const Wrapper = styled(View, {
|
||||||
const Message = (props: Props) => {
|
const Message = (props: Props) => {
|
||||||
const { text, images, reactions, reply, pinned } = props
|
const { text, images, reactions, reply, pinned } = props
|
||||||
|
|
||||||
const [hovered, setHovered] = React.useState(false)
|
const [hovered, setHovered] = useState(false)
|
||||||
const [actionsOpen, setActionsOpen] = React.useState(false)
|
const [actionsOpen, setActionsOpen] = useState(false)
|
||||||
|
|
||||||
const active = actionsOpen || hovered
|
const active = actionsOpen || hovered
|
||||||
// <Sheet press="long">
|
// <Sheet press="long">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { useState } from 'react'
|
import React, { useState } from 'react'
|
||||||
|
|
||||||
import * as Collapsible from '@radix-ui/react-collapsible'
|
import * as Collapsible from '@radix-ui/react-collapsible'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue