mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2025-01-27 04:16:09 +00:00
10 lines
224 B
TypeScript
10 lines
224 B
TypeScript
|
import { Choice } from "@utils/types";
|
||
|
import { Instance } from "lemmy-js-client";
|
||
|
|
||
|
export default function instanceToChoice({ id, domain }: Instance): Choice {
|
||
|
return {
|
||
|
value: id.toString(),
|
||
|
label: domain,
|
||
|
};
|
||
|
}
|