Skip to content

Commit

Permalink
Day_10 has been published
Browse files Browse the repository at this point in the history
  • Loading branch information
Asabeneh committed Oct 10, 2020
1 parent ba2da20 commit 77ed7aa
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,9 @@ import Button from '../shared/Button'
import HexaColr from '../color/HexaColor'
import Country from '../country/Country'
import UserCard from '../user/UserCard'
import { buttonStyles } from '../../styles/button-styles'


// CSS styles in JavaScript Object
const buttonStyles = {
backgroundColor: '#61dbfb',
padding: 10,
border: 'none',
borderRadius: 5,
margin: 3,
cursor: 'pointer',
fontSize: 22,
color: 'white',
margin: '0 auto',
}
// TechList Component
// class base component
class TechList extends React.Component {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// CSS styles in JavaScript Object
export const buttonStyles = {
backgroundColor: '#61dbfb',
padding: 10,
border: 'none',
borderRadius: 5,
margin: 3,
cursor: 'pointer',
fontSize: 22,
color: 'white',
margin: '0 auto',
}

0 comments on commit 77ed7aa

Please sign in to comment.