Update theming, rebuild app from existing angular project
This commit is contained in:
@@ -1,16 +1,15 @@
|
||||
import { CommonModule } from "@angular/common";
|
||||
import { ChangeDetectionStrategy, Component, input } from "@angular/core";
|
||||
import { FormsModule } from "@angular/forms";
|
||||
import { readTextFile } from "@tauri-apps/api/fs";
|
||||
import { load, parse } from "protobufjs";
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { Component, input } from '@angular/core';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { readTextFile } from '@tauri-apps/api/fs';
|
||||
import { parse } from 'protobufjs';
|
||||
|
||||
@Component({
|
||||
selector: "app-editor",
|
||||
selector: 'app-editor',
|
||||
standalone: true,
|
||||
imports: [CommonModule, FormsModule],
|
||||
templateUrl: "./editor.component.html",
|
||||
styleUrl: "./editor.component.css",
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
templateUrl: './editor.component.html',
|
||||
styleUrl: './editor.component.scss',
|
||||
})
|
||||
export class EditorComponent {
|
||||
fileContents = input<string>();
|
||||
|
||||
Reference in New Issue
Block a user