Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/src/onboarding/company-size.ts
2500 views
1
/**
2
* Copyright (c) 2023 Gitpod GmbH. All rights reserved.
3
* Licensed under the GNU Affero General Public License (AGPL).
4
* See License.AGPL.txt in the project root for license information.
5
*/
6
7
export const getCompanySizeOptions = () => {
8
return [
9
{ label: "Please select one", value: "" },
10
{ label: "1-50", value: "1_to_50" },
11
{ label: "51-250", value: "51_to_250" },
12
{ label: "251-1000", value: "251_to_1000" },
13
{ label: "1000+", value: "more_than_1000" },
14
];
15
};
16
17