Comment trier le tableau 2D en Java en utilisant API Stream

Arrays.sort(myArr, (a, b) -> a[0] - b[0]);
Fantastic Fish