summaryrefslogtreecommitdiff
path: root/react/04-components/src/components/MyOtherComponent.jsx
blob: 1dc5c686bf2098c464f69b7ddca5527528770419 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from 'react'

const MyOtherComponent = ({title, children}) => {
    return (
        <>
            <div style={{marginTop: '10px'}}>
                <div style={{fontWeight: 'bold', backgroundColor: '#f0f0f0', border: '1px solid #ccc'}}>{title}</div>
                <div>{children}</div>
            </div>
        </>
    )
}

export default MyOtherComponent