Angular - Server-Side Rendering
Given this Angular server code snippet:
const DATA_KEY = makeStateKey('data');
this.transferState.set(DATA_KEY, {name: 'Alice'});What will the client receive when accessing this.transferState.get(DATA_KEY, null)?