tooot/src/screens/Tabs/Shared/Account/Context.tsx

11 lines
270 B
TypeScript

import { createContext } from 'react'
type AccountContextType = {
account?: Mastodon.Account
relationship?: Mastodon.Relationship
pageMe?: boolean
}
const AccountContext = createContext<AccountContextType>({} as AccountContextType)
export default AccountContext