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 styled from "styled-components"; | |
const ToolBarWrapper = styled.div` | |
position: absolute !important; right: 12px; top: 87px; max-width: 40px; padding: 1rem 0 0.5rem 0!important; z-index: 10000; | |
a{ | |
width: 40px; | |
display: block; | |
text-align: center; | |
padding-bottom: 0.5rem; | |
color: #ffd50e !important; | |
a:hover{ |
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'); | |
var browserSync = require('browser-sync'); | |
var url = require('url'); | |
var proxy = require('proxy-middleware'); | |
var reload = browserSync.reload; | |
function externalApiFactory(externalApi) { | |
return function externalApiFunc( ) { | |
var proxyOptions = url.parse(externalApi); | |
proxyOptions.route = '/api'; |
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
package py.com.sodep; | |
import junit.framework.Assert; | |
import org.junit.Before; | |
import org.junit.Test; | |
public class BankAccountTest { | |
@Test | |
public void testDebitWithEnoughBalance() { |