const button={
width:'100px',height:'100px' , color:'#fff' }
export default function Button( {children} ){
return <button id='btn' style={button} >
{children}
</button>
}
const button={
width:'100px',height:'100px' , color:'#fff' }
export default function Button( {children} ){
return <button id='btn' style={button} >
{children}
</button>
}