11 lines
220 B
TypeScript
11 lines
220 B
TypeScript
import type { contextType } from '../types'
|
|
|
|
import { FirebaseAPI } from './firebaseAPI'
|
|
|
|
const dataSources = () =>
|
|
({
|
|
firebaseAPI: new FirebaseAPI(),
|
|
} as contextType['dataSources'])
|
|
|
|
export default dataSources
|