andrew_bashliy
3 years ago
15 changed files with 145 additions and 26 deletions
@ -1,5 +1,9 @@ |
|||||||
module.exports = { |
module.exports = { |
||||||
root: true, |
root: true, |
||||||
extends: '@react-native-community', |
extends: '@react-native-community', |
||||||
rules: {}, |
rules: { |
||||||
}; |
semi: 0, |
||||||
|
curly: 0, |
||||||
|
'no-shadow': 'off', |
||||||
|
}, |
||||||
|
} |
||||||
|
@ -0,0 +1,28 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<projectDescription> |
||||||
|
<name>taskme</name> |
||||||
|
<comment>Project android created by Buildship.</comment> |
||||||
|
<projects> |
||||||
|
</projects> |
||||||
|
<buildSpec> |
||||||
|
<buildCommand> |
||||||
|
<name>org.eclipse.buildship.core.gradleprojectbuilder</name> |
||||||
|
<arguments> |
||||||
|
</arguments> |
||||||
|
</buildCommand> |
||||||
|
</buildSpec> |
||||||
|
<natures> |
||||||
|
<nature>org.eclipse.buildship.core.gradleprojectnature</nature> |
||||||
|
</natures> |
||||||
|
<filteredResources> |
||||||
|
<filter> |
||||||
|
<id>1630909588189</id> |
||||||
|
<name></name> |
||||||
|
<type>30</type> |
||||||
|
<matcher> |
||||||
|
<id>org.eclipse.core.resources.regexFilterMatcher</id> |
||||||
|
<arguments>node_modules|.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments> |
||||||
|
</matcher> |
||||||
|
</filter> |
||||||
|
</filteredResources> |
||||||
|
</projectDescription> |
@ -0,0 +1,34 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<projectDescription> |
||||||
|
<name>app</name> |
||||||
|
<comment>Project app created by Buildship.</comment> |
||||||
|
<projects> |
||||||
|
</projects> |
||||||
|
<buildSpec> |
||||||
|
<buildCommand> |
||||||
|
<name>org.eclipse.jdt.core.javabuilder</name> |
||||||
|
<arguments> |
||||||
|
</arguments> |
||||||
|
</buildCommand> |
||||||
|
<buildCommand> |
||||||
|
<name>org.eclipse.buildship.core.gradleprojectbuilder</name> |
||||||
|
<arguments> |
||||||
|
</arguments> |
||||||
|
</buildCommand> |
||||||
|
</buildSpec> |
||||||
|
<natures> |
||||||
|
<nature>org.eclipse.jdt.core.javanature</nature> |
||||||
|
<nature>org.eclipse.buildship.core.gradleprojectnature</nature> |
||||||
|
</natures> |
||||||
|
<filteredResources> |
||||||
|
<filter> |
||||||
|
<id>1630909588124</id> |
||||||
|
<name></name> |
||||||
|
<type>30</type> |
||||||
|
<matcher> |
||||||
|
<id>org.eclipse.core.resources.regexFilterMatcher</id> |
||||||
|
<arguments>node_modules|.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments> |
||||||
|
</matcher> |
||||||
|
</filter> |
||||||
|
</filteredResources> |
||||||
|
</projectDescription> |
@ -1,7 +1,9 @@ |
|||||||
|
|
||||||
import { RootState } from '..' |
import { RootState } from '..' |
||||||
|
|
||||||
export const selectActiveNavigationModule = (store: RootState) => { |
export const selectActiveNavigationModule = (store: RootState) => { |
||||||
return store.shared.activeNavigationModule |
return store.shared.activeNavigationModule |
||||||
} |
} |
||||||
|
|
||||||
|
export const selectIsForbidden = (store: RootState) => { |
||||||
|
return store.shared.isForbidden |
||||||
|
} |
||||||
|
Loading…
Reference in new issue