##Referências
###Home 1 - Home
###About 1 - About
###Work 1 - Work
| import type { Item } from "#/app/generated/api"; | |
| import { UPDATE_BY_ID } from "./constants"; | |
| export const updateById = (id: number, updates: Partial<Item>) => ({ | |
| type: UPDATE_BY_ID, | |
| payload: { | |
| id, | |
| updates, | |
| }, | |
| }); |
| import React, { useEffect, useState } from 'react'; | |
| import { useDispatch, useStore } from 'react-redux'; | |
| import { List } from 'components/list'; | |
| import { Actions as SearchActions } from 'redux/modules/search'; | |
| import './albums.scss'; | |
| function AlbumsPage(props) { |
| // stylelint-disable declaration-no-important | |
| // Flex variation | |
| // | |
| // Custom styles for additional flex alignment options. | |
| @each $breakpoint in map-keys($grid-breakpoints) { | |
| @include media-breakpoint-up($breakpoint) { | |
| $infix: breakpoint-infix($breakpoint, $grid-breakpoints); |
| @import '~styles/reset'; | |
| @import '~styles/fonts.css'; | |
| /* stylelint-disable selector-max-type */ | |
| @-ms-viewport { | |
| width: device-width; | |
| } | |
| @-o-viewport { | |
| width: device-width; |
| const axios = require('axios'); | |
| module.exports = class Cartola { | |
| constructor(email, password) { | |
| this.baseURL = ''; | |
| } | |
| auth(data, callback) { | |
| const instance = axios.create({ | |
| baseURL: 'https://login.globo.com/api', |
| @import "bower_components/susy/sass/susy"; | |
| $columns: 12; | |
| $susy:( | |
| columns: $columns, | |
| gutters: 1/5, | |
| container: 960px, | |
| ); | |
| .container { |
##Containers
###Navbar
###Player cover
| var gulp = require('gulp'); | |
| var glob = require('glob'); | |
| var args = require('yargs') | |
| .default('production', false) | |
| .alias('prod', 'production') | |
| .argv; | |
| glob.sync('gulp_tasks/*.js', { realpath: true }) | |
| .forEach(function(file) { |