Skip to content

Instantly share code, notes, and snippets.

@rauny-henrique
rauny-henrique / app.component.ts
Created September 16, 2024 13:56 — forked from drew-thompson/app.component.ts
Basic lib-jitsi-meet Angular Implementation
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit {
title = 'jitsi';
private jitsi: any;