mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-07-24 11:02:22 -04:00
83851fe9df
# Description of Changes - Add Angular integration - Add Angular quickstart chat template # API and ABI breaking changes None. # Expected complexity level and risk 2 # Testing Ran the template --------- Co-authored-by: Tien Pham <tien@clockworklabs.io> Co-authored-by: clockwork-labs-bot <clockwork-labs-bot@users.noreply.github.com>
6 lines
227 B
TypeScript
6 lines
227 B
TypeScript
import { bootstrapApplication } from '@angular/platform-browser';
|
|
import { appConfig } from './app/app.config';
|
|
import { App } from './app/app.component';
|
|
|
|
bootstrapApplication(App, appConfig).catch(err => console.error(err));
|