Initial commit for new panel
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
export function createTimeFrameExtractor(
|
||||
selectedTimeFrame: string | undefined,
|
||||
) {
|
||||
return (sectionKey: string) => {
|
||||
return selectedTimeFrame
|
||||
?.split(",")
|
||||
.find((value) => value.includes(sectionKey));
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user