Photo of Gil Creque in a pink TV

Worm Icon Google I/O & North America Connect 2023

I attended Google I/O Connect and North America Connect and was able to meet with the Google Developer Relations team and other GDG organizers from around the world. I was able to learn about the latest Google technologies and how to better serve the GDG community.

@Component({
  selector: 'my-app',
  standalone: true,
  template: `
    {{ fullName() }} <button (click)="setName('John')">Click</button>
  `,
})
export class App {
  firstName = signal('Jane');
  lastName = signal('Doe');
  fullName = computed(() => `${this.firstName()} ${this.lastName()}`);

  constructor() {
    effect(() => console.log('Name changed:', this.fullName()));
  }

  setName(newName: string) {
    this.firstName.set(newName);
  }
}