import { ISetLanguageAction } from "./types";
import { SET_LANGUAGE } from './types'


export const setLanguage = (lang: string): ISetLanguageAction => ({
    type: SET_LANGUAGE,
    payload: lang
})