git config --global user.name ''
git config --global user.email ''
| try: | |
| conn = psycopg2.connect( | |
| host="localhost", | |
| database="catastro_manta", | |
| user="postgres", | |
| password="753159862450") | |
| cur = conn.cursor() | |
| sql1 = """ | |
| select bp.blopr_numero, bp.blopr_numpiso, bp.blopr_superfconstr, bp.blopr_enconstruccion, |
| _mostrarFoto() { | |
| if (producto.fotoUrl != null) { | |
| return Container(); | |
| } else { | |
| if( foto != null ){ | |
| return Image.file( |
| const path = require("path"); | |
| const HtmlWebPackPlugin = require("html-webpack-plugin"); | |
| const MiniCssExtractPlugin = require("mini-css-extract-plugin"); | |
| module.exports = { | |
| entry: "./src/index.js", | |
| output: { | |
| path: path.resolve(__dirname, "dist"), | |
| filename: "bundle.js", |
| import React from 'react' | |
| import { Link } from 'react-router-dom' | |
| export const HeroCard = ({ | |
| id, | |
| superhero, | |
| alter_ego, | |
| first_appearance, | |
| characters, | |
| }) => { |
| export const heroes = [ | |
| { | |
| 'id': 'dc-batman', | |
| 'superhero':'Batman', | |
| 'publisher':'DC Comics', | |
| 'alter_ego':'Bruce Wayne', | |
| 'first_appearance':'Detective Comics #27', | |
| 'characters':'Bruce Wayne' | |
| }, | |
| { |