Guest User

Untitled

a guest
Oct 19th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. import React from 'react';
  2.  
  3. import './App.css';
  4.  
  5. import Saludar from './components/Saludar';
  6.  
  7. export default class App extends React.Component {
  8. render() {
  9. return (
  10. <div>
  11. <Saludar />
  12. <Saludar />
  13. <Saludar />
  14. </div>
  15. );
  16. }
  17. }
Add Comment
Please, Sign In to add comment