Slide 29
Slide 29 text
@ManfredSteyer
export const FlightBookingStore = signalStore(
{ providedIn: 'root' },
withState({
from: 'Paris',
to: 'London',
[…]
}),
withSignals(([…]) => ({ […] })),
withMethods(([…]) => ({ })),
withHooks({ […] }),
withCallState()
);