-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.61.0/codemirror.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.61.0/codemirror.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.61.0/mode/xml/xml.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.61.0/mode/clike/clike.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.61.0/mode/php/php.min.js"></script>
<script src="script.js" defer></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div style="padding: 10px 0;">
Component Name: <input id="name" placeholder="component name" />
<button id="convert">Convert</button>
</div>
<div style="display: flex;">
<div style="width: 50%">
<h4 style="margin-bottom: 5px;text-align: center;">HTML</h4>
<textarea id="html">
<div class="card" style="width: 18rem;">
test
<img class="card-img-top" src="..." alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</textarea>
</div>
<div style="width: 50%">
<h4 style="margin-bottom: 5px;text-align: center;">PHP-REACT</h4>
<div id="result"></div>
</div>
</div>
</body>