main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
384 bytes
|
Line | |
---|
1 | "use strict";
|
---|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
3 | exports.useFirstMountState = void 0;
|
---|
4 | var react_1 = require("react");
|
---|
5 | function useFirstMountState() {
|
---|
6 | var isFirst = react_1.useRef(true);
|
---|
7 | if (isFirst.current) {
|
---|
8 | isFirst.current = false;
|
---|
9 | return true;
|
---|
10 | }
|
---|
11 | return isFirst.current;
|
---|
12 | }
|
---|
13 | exports.useFirstMountState = useFirstMountState;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.