()
| 1 | import React from 'react'; |
| 2 | |
| 3 | export const Header = () => { |
| 4 | |
| 5 | const headerStyle = { |
| 6 | |
| 7 | width: '100%', |
| 8 | padding: '2%', |
| 9 | backgroundColor: "yellowgreen", |
| 10 | color: 'black', |
| 11 | textAlign: 'center' |
| 12 | } |
| 13 | |
| 14 | return( |
| 15 | <div style={headerStyle}> |
| 16 | <h1>React With .NET</h1> |
| 17 | </div> |
| 18 | ) |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected