-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathLoading.js
More file actions
54 lines (52 loc) · 1.87 KB
/
Loading.js
File metadata and controls
54 lines (52 loc) · 1.87 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import React from 'react'
import Actions from './Actions'
import Control from './Control'
import Placeholder from './Placeholder'
export default function Loading() {
return (
<>
<div className='colset colset-main'>
<div className='left'>
<Control text='Project'>
<div>
<div className='control control-inline control-placeholder'>
<span className='placeholder-label'>Name</span>
<Placeholder type='input' />
</div>
<div className='control control-inline control-placeholder'>
<span className='placeholder-label'>Namespace</span>
<Placeholder type='input' />
</div>
<div className='control control-inline control-placeholder'>
<span className='placeholder-label'>Description</span>
<Placeholder type='input' />
</div>
</div>
</Control>
<Control text='Steeltoe'>
<Placeholder type='radio' width='100px' />
</Control>
<Control text='.NET'>
<Placeholder type='radio' width='100px' />
</Control>
<Control text='Language'>
<Placeholder type='radio' width='100px' />
</Control>
</div>
<div className='right'>
<div className='control'>
<div className='dependency-header'>
<span className='label'>Dependencies</span>
<Placeholder className='placeholder-button-dep' type='button' />
</div>
</div>
</div>
</div>
<Actions>
<Placeholder className='placeholder-button-submit' type='button' />
<Placeholder className='placeholder-button-explore' type='button' />
<Placeholder className='placeholder-button-share' type='button' />
</Actions>
</>
)
}