Skip to content

Instantly share code, notes, and snippets.

@darwinsalinas
Created August 7, 2019 04:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darwinsalinas/3b6e9df847dd62668cfc055d21b1d1c5 to your computer and use it in GitHub Desktop.
Save darwinsalinas/3b6e9df847dd62668cfc055d21b1d1c5 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import Impuestos from './Impuestos/Impuestos';
export default class Pos extends Component {
render() {
return (
<div className="container">
<div className="row">
<div className="col-md-12">
<Impuestos />
</div>
</div>
</div>
);
}
}
if (document.getElementById('appimpuestos')) {
ReactDOM.render(<Pos />, document.getElementById('appimpuestos'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment