import { ICompanyInfo } from "../../../../Application/DTOs/CompanyDto/CompanyDto.type";
import { ISetCompanyListAction, SET_COMPANY_LIST } from "./types";


export const setCompanyList = (list: ICompanyInfo[]): ISetCompanyListAction => ({
    type: SET_COMPANY_LIST,
    payload: list
})