Brandon Presley
5b066bccaf
The daily page is used to flip through your exercises by day. This is in contrast to the History page, which is an infinitely scrolling list of all sets. Closes #216, #207
12 lines
163 B
TypeScript
12 lines
163 B
TypeScript
export type DrawerParams = {
|
|
History: {};
|
|
Exercises: {};
|
|
Plans: {};
|
|
Graphs: {};
|
|
Timer: {};
|
|
Weight: {};
|
|
Insights: {};
|
|
Settings: {};
|
|
Daily: {};
|
|
};
|