|
|
@ -4,7 +4,6 @@ import { HttpClientModule } from '@angular/common/http';
|
|
|
|
|
|
|
|
|
|
|
|
import { BookFormComponent } from './components/book-form/book-form.component';
|
|
|
|
import { BookFormComponent } from './components/book-form/book-form.component';
|
|
|
|
import { BookListComponent } from './components/book-list/book-list.component';
|
|
|
|
import { BookListComponent } from './components/book-list/book-list.component';
|
|
|
|
import { BookMenuComponent } from './components/book-menu/book-menu.component';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import { UserService } from './services/user-service';
|
|
|
|
import { UserService } from './services/user-service';
|
|
|
@ -12,13 +11,13 @@ import { User } from './models/user.model';
|
|
|
|
|
|
|
|
|
|
|
|
import { BookService } from './services/book-service';
|
|
|
|
import { BookService } from './services/book-service';
|
|
|
|
import { Book } from './models/book.model';
|
|
|
|
import { Book } from './models/book.model';
|
|
|
|
|
|
|
|
import { UserMenuComponent } from './components/user-menu/user-menu.component';
|
|
|
|
import { SudokuService } from "./services/sudoku-service"
|
|
|
|
import { SudokuService } from "./services/sudoku-service"
|
|
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
@Component({
|
|
|
|
selector: 'app-root',
|
|
|
|
selector: 'app-root',
|
|
|
|
standalone: true,
|
|
|
|
standalone: true,
|
|
|
|
imports: [RouterOutlet, BookListComponent, BookFormComponent, BookMenuComponent, HttpClientModule],
|
|
|
|
imports: [RouterOutlet, BookListComponent, BookFormComponent, UserMenuComponent, HttpClientModule],
|
|
|
|
templateUrl: './app.component.html',
|
|
|
|
templateUrl: './app.component.html',
|
|
|
|
providers: [
|
|
|
|
providers: [
|
|
|
|
BookService,
|
|
|
|
BookService,
|
|
|
|