10436 |
stevensc |
1 |
import React from 'react'
|
|
|
2 |
|
|
|
3 |
const FormView = () => {
|
|
|
4 |
return (
|
|
|
5 |
<>
|
|
|
6 |
<div>
|
|
|
7 |
<ul className="nav nav-tabs" id="myTab" role="tablist">
|
|
|
8 |
<li className="nav-item" role="presentation">
|
|
|
9 |
<button className="nav-link active" id="home-tab" data-toggle="tab" data-target="#home" type="button" role="tab" aria-controls="home" aria-selected="true">Home</button>
|
|
|
10 |
</li>
|
|
|
11 |
<li className="nav-item" role="presentation">
|
|
|
12 |
<button className="nav-link" id="profile-tab" data-toggle="tab" data-target="#profile" type="button" role="tab" aria-controls="profile" aria-selected="false">Profile</button>
|
|
|
13 |
</li>
|
|
|
14 |
<li className="nav-item" role="presentation">
|
|
|
15 |
<button className="nav-link" id="contact-tab" data-toggle="tab" data-target="#contact" type="button" role="tab" aria-controls="contact" aria-selected="false">Contact</button>
|
|
|
16 |
</li>
|
|
|
17 |
</ul>
|
|
|
18 |
<div className="tab-content" id="myTabContent">
|
|
|
19 |
<div className="tab-pane fade show active" id="home" role="tabpanel" aria-labelledby="home-tab">...</div>
|
|
|
20 |
<div className="tab-pane fade" id="profile" role="tabpanel" aria-labelledby="profile-tab">...</div>
|
|
|
21 |
<div className="tab-pane fade" id="contact" role="tabpanel" aria-labelledby="contact-tab">...</div>
|
|
|
22 |
</div>
|
|
|
23 |
</div>
|
|
|
24 |
</>
|
|
|
25 |
)
|
|
|
26 |
}
|
|
|
27 |
export default FormView
|