9 lines
No EOL
225 B
TypeScript
9 lines
No EOL
225 B
TypeScript
import { createContext } from 'react'
|
|
import { TeamElement } from '~utils/enums'
|
|
|
|
const PartyContext = createContext({
|
|
element: TeamElement.Any,
|
|
setElement: (element: TeamElement) => {}
|
|
})
|
|
|
|
export default PartyContext |