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
var gulp = require('gulp'), | |
sass = require('gulp-sass'), | |
browserSync = require('browser-sync'); /* подключение модуля, который устанавливается через npm install*/ | |
gulp.task('sass', function() { | |
return gulp.src('app/sass/**/*.sass') | |
.pipe(sass()) | |
.pipe(gulp.dest('app/css')) /* только папки, не указывать отдельные файлы*/ | |
}); |
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, { Component } from 'react'; | |
import PropTypes from 'prop-types'; | |
import { connect } from 'react-redux'; | |
import { StyleSheet, View, FlatList } from 'react-native'; | |
import Icon from 'react-native-vector-icons/FontAwesome'; | |
import { List, ListItem, SearchBar } from 'react-native-elements'; | |
import { Container, Content, Text, Button, Label } from 'native-base'; | |
import Spinner from 'react-native-loading-spinner-overlay'; | |
import { requestAttachedFacilities } from '../actions/pickFacility'; |
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
state = { | |
glossary: [ | |
{ | |
name: 'Altcoins', | |
description: 'The “alt” means “alternative” and “coins” mean other cryptocurrencies. These are, in essence, alternative to the Bitcoin, and have a lower value on the market. E.g: Ethereum, Litecoin, Dogecoin.', | |
isOpened: false | |
}, | |
{ | |
name: 'Altcoins', | |
description: 'The “alt” means “alternative” and “coins” mean other cryptocurrencies. These are, in essence, alternative to the Bitcoin, and have a lower value on the market. E.g: Ethereum, Litecoin, Dogecoin.', |