S
Size: a a a
S
MU
S
MU
IS
S
VC
export async function getServerSideProps(ctx) {
const { params: { browser } } = ctx;
const props = await getCommonProps();
props.targetBrowser = browser // <-- вроде некрасиво
return { props };
}
IS
IS
S
IS
S
MU
IS
const getInitializedMatrix = (n, k, initialValue = null) => Array.from(Array(n), () => Array(k).fill(initialValue));
S
IS
MU
IS
S
IS