Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getters.js « store « eks_cluster « create_cluster « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8489ca31cf370fd1cf8083f846cfc25594a2546 (plain)
1
2
export const subnetValid = ({ selectedSubnet }) =>
  Array.isArray(selectedSubnet) && selectedSubnet.length >= 2;