|
1
|
import {ReactNode} from 'react'; |
|
2
|
|
|
3
|
import './styles.scss'; |
|
4
|
|
|
5
|
type RowProps = { |
|
6
|
children: ReactNode; |
|
7
|
}; |
|
8
|
|
|
9
|
/** |
|
10
|
* @since 3.0.0
|
|
11
|
*/ |
|
12
|
export default function Row({children}: RowProps) { |
|
13
|
return <div className={'givewp-welcome-banner-row'}>{children}</div>; |
|
14
|
} |
|
15
|
|