9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
import { ISwitchLabel } from "../types/switchLabel";
|
|
|
|
const apartmentLayouts: ISwitchLabel[] = [
|
|
{ id: "1", label: "Layout" },
|
|
{ id: "2", label: "On the floor" },
|
|
];
|
|
|
|
export { apartmentLayouts };
|