PluginProbe
MotoPress Hotel Booking for Divi / trunk
MotoPress Hotel Booking for Divi vtrunk
trunk 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.1.0 2.0.0
mphb-divi / divi-4 / includes / components / MPHBModule.jsx

MPHBModule.jsx in MotoPress Hotel Booking for Divi trunk, at divi-4/includes/components/MPHBModule.jsx

35 lines 797 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import React from 'react';
2
3 const MPHBModule = ( {
4 name,
5 description = ''
6 } ) => (
7 <div>
8 <div style={
9 {
10 'background': '#f6f7f7',
11 'borderRadius': '10px',
12 'padding': '3em 1em'
13 }
14 }>
15 <p
16 style={
17 {
18 'textAlign': 'center',
19 'fontWeight': '700',
20 'fontSize': '1.5em'
21 }
22 }
23 >{ name }</p>
24 { description && <p
25 style={
26 {
27 'textAlign': 'center'
28 }
29 }
30 >{ description }</p> }
31 </div>
32 </div>
33 );
34
35 export default MPHBModule;