UNPKG

@kvinc/mreact

Version:

martin's simple react

21 lines 505 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <div> <div id="root"> <span>123</span> </div> </div> <script> const root = document.getElementById('root') const pNode = document.createElement('p') root.parentNode.replaceChild(pNode, root) </script> </body> </html>