mirror of
https://github.com/immich-app/immich.git
synced 2025-01-09 21:36:46 +01:00
7 lines
189 B
Dart
7 lines
189 B
Dart
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||
|
import 'package:immich_mobile/shared/models/album.dart';
|
||
|
|
||
|
final currentAlbumProvider = StateProvider<Album?>((ref) {
|
||
|
return null;
|
||
|
});
|