UNPKG
react-saasify
Version:
latest (1.20.5)
1.20.5
1.20.4
1.20.3
1.20.2
1.20.1
1.20.0
1.18.31
1.18.26
1.18.24
1.18.23
1.18.22
1.18.21
1.18.20
1.18.19
1.18.18
1.18.17
1.18.16
1.18.15
1.18.14
1.18.12
1.18.11
1.18.10
1.18.9
1.18.8
1.18.7
1.18.6
1.18.2
1.18.1
1.17.13
1.17.10
1.17.8
1.17.6
1.17.5
1.17.4
1.17.3
1.17.2
1.16.8
1.16.7
1.16.5
1.16.4
1.16.3
1.16.1
1.16.0
1.15.14
1.15.13
1.15.12
1.15.11
1.15.10
1.15.9
1.15.8
1.15.6
1.15.5
1.15.4
1.15.0
1.14.3
1.14.2
1.14.1
1.14.0
1.13.8
1.13.7
1.13.6
1.13.5
1.13.3
1.13.0
1.12.0
1.11.17
1.11.16
1.11.15
1.11.13
1.11.12
1.11.11
1.11.10
1.11.9
1.11.7
1.11.6
1.11.5
1.11.4
1.11.3
1.11.2
1.11.1
1.11.0
1.10.3
1.10.2
1.10.1
1.10.0
1.8.6
1.8.5
1.8.4
1.8.3
1.8.2
1.8.1
1.8.0
1.7.18
1.7.16
1.7.15
1.7.13
1.7.12
1.7.11
1.7.10
1.7.9
1.7.5
1.7.4
1.7.1
1.6.4
1.6.3
1.6.2
1.6.1
1.6.0
1.5.4
1.5.3
1.5.2
0.2.0
0.1.1
0.1.0
React components for Saasify web clients.
github.com/saasify-sh/saasify
saasify-sh/saasify
react-saasify
/
src
/
components
/
BlankSection
/
BlankSection.js
21 lines
(17 loc)
•
343 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import
React
, {
Component
}
from
'react'
import
{
Section
}
from
'../Section'
export
class
BlankSection
extends
Component
{
render
(
) {
const
{ style, ...rest } =
this
.
props
return
(
<
Section
id
=
'blank'
style
=
{{
minHeight:
'
8em
',
...style
}} {
...rest
} />
) } }