mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-22 15:36:12 +01:00
* add expense date * Improve date formatting * Prettier * Change field description --------- Co-authored-by: Sebastien Castiel <sebastien@castiel.me>
8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
'use server'
|
|
import { getGroups } from '@/lib/api'
|
|
|
|
export async function getGroupsAction(groupIds: string[]) {
|
|
'use server'
|
|
return getGroups(groupIds)
|
|
}
|