Como classificar a matriz 2D em Java usando a API Stream

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