This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"SYMBOL": "20MICRONS", | |
"NAME OF COMPANY": "20 Microns Limited", | |
"SERIES": "EQ", | |
"DATE OF LISTING": "06-OCT-2008", | |
"PAID UP VALUE": 5, | |
"MARKET LOT": 1, | |
"ISIN NUMBER": "INE144J01027", | |
"FACE VALUE": 5 |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"records": { | |
"expiryDates": [ | |
"03-Feb-2022", | |
"10-Feb-2022", | |
"17-Feb-2022", | |
"24-Feb-2022", | |
"03-Mar-2022", | |
"10-Mar-2022", | |
"17-Mar-2022", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import { useScrollDirection } from 'react-use-scroll-direction' | |
export const Window_Scroll_Direction = () => { | |
const [direction, setDirection] = React.useState(String) | |
const { isScrollingUp, isScrollingDown } = useScrollDirection() | |
React.useEffect(() => { | |
isScrollingDown && setDirection('down') | |
isScrollingUp && setDirection('up') |