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
| { | |
| "Export default": { | |
| "scope": "javascript,typescript,javascriptreact,typescriptreact", | |
| "prefix": "eid", | |
| "body": [ | |
| "export { default } from './${TM_DIRECTORY/.*[\\/](.*)$$/$1/}'", | |
| "$2" | |
| ], | |
| "description": "Import and export default in a single line" | |
| }, |
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
| declare module 'sanctuary' { | |
| type maybeToNullable<A> = (p: Maybe<A>) => Nullable<A>; | |
| type Nullable<A> = A | null; | |
| type Pair<A, B> = [A, B]; | |
| type Thunk<A> = () => A; | |
| type Fn<A, B> = (a: A) => B; |
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 { Field, ObjectType, ID } from 'type-graphql' | |
| import { | |
| Entity, | |
| ObjectIdColumn, | |
| ObjectID, | |
| Column, | |
| CreateDateColumn, | |
| UpdateDateColumn, | |
| } from 'typeorm' |
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 { Text, View, TouchableOpacity, ImageBackground, ScrollView } from 'react-native' | |
| import gql from 'graphql-tag' | |
| import { FlatGrid } from 'react-native-super-grid' | |
| import { useItemsQuery } from '../../generated/graphql' | |
| export const ITEMS_QUERY = gql` | |
| query Items($communityId: String!) { | |
| items(communityId: $communityId) { | |
| _id |
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
| <!DOCTYPE html> | |
| <html lang=""> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>FFMPEGJS Core Page</title> | |
| <script src="https://unpkg.com/@ffmpeg/[email protected]/dist/ffmpeg.min.js"></script> | |
| <script> |
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
| /* screen - frame-2 */ | |
| .border-class-1 { | |
| border: 1px solid transparent; | |
| } | |
| .font-class-1 { | |
| font-family: 'Montserrat', Helvetica, Arial, serif; | |
| font-style: normal; | |
| font-weight: 600; | |
| letter-spacing: 0.25px; |
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
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.0; | |
| import "./IERC721.sol"; | |
| import "./IERC721Receiver.sol"; | |
| import "./extensions/IERC721Metadata.sol"; | |
| import "../../utils/Address.sol"; | |
| import "../../utils/Context.sol"; | |
| import "../../utils/Strings.sol"; |
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
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.0; | |
| import "../utils/Context.sol"; | |
| /** | |
| * @dev Contract module which provides a basic access control mechanism, where | |
| * there is an account (an owner) that can be granted exclusive access to | |
| * specific functions. |
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
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.0; | |
| import "../utils/Context.sol"; | |
| /** | |
| * @dev Contract module which provides a basic access control mechanism, where | |
| * there is an account (an owner) that can be granted exclusive access to | |
| * specific functions. |
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
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.0; | |
| import "../utils/Context.sol"; | |
| /** | |
| * @dev Contract module which provides a basic access control mechanism, where | |
| * there is an account (an owner) that can be granted exclusive access to | |
| * specific functions. |