mirror of
https://github.com/immich-app/immich.git
synced 2024-12-20 00:38:24 +02: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;
|
||
|
});
|