mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
import { createContext } from 'react'
|
|
|
|
type AccountContextType = {
|
|
account?: Mastodon.Account
|
|
pageMe?: boolean
|
|
}
|
|
const AccountContext = createContext<AccountContextType>({} as AccountContextType)
|
|
|
|
export default AccountContext
|