Tauri Init
This commit is contained in:
19
src/app/app.component.html
Normal file
19
src/app/app.component.html
Normal file
@@ -0,0 +1,19 @@
|
||||
<main class="container">
|
||||
<h1>Welcome to Tauri + Angular!</h1>
|
||||
|
||||
<div class="row">
|
||||
<a href="https://tauri.app" target="_blank">
|
||||
<img src="/assets/tauri.svg" class="logo tauri" alt="Tauri logo" />
|
||||
</a>
|
||||
<a href="https://angular.io" target="_blank">
|
||||
<img src="/assets/angular.svg" class="logo angular" alt="Angular logo" />
|
||||
</a>
|
||||
</div>
|
||||
<p>Click on the logos to learn more about the frameworks</p>
|
||||
|
||||
<form class="row" (submit)="greet($event, greetInput.value)">
|
||||
<input #greetInput id="greet-input" placeholder="Enter a name..." />
|
||||
<button type="submit">Greet</button>
|
||||
</form>
|
||||
<p>{{ greetingMessage }}</p>
|
||||
</main>
|
||||
Reference in New Issue
Block a user