Slide 22
Slide 22 text
• Textmasterformat bearbeiten
• Zweite Ebene
Mastertextformat bearbeiten
27
NGRX Signal Store
export const FlightBookingStore = signalStore(
{ providedIn: 'root' },
withState({
from: 'Paris',
to: 'London',
[…]
}),
withComputed(([…]) => ({ […] })),
withMethods(([…]) => ({ })),
withHooks({ […] }),
withResource([…]}),
withDevtools([…]}),
withUndoRedo(),
);