mirror of
https://github.com/miggymofongo/kh_quote.git
synced 2024-11-23 14:50:26 +00:00
adding quote card
This commit is contained in:
parent
f65f02f1ad
commit
1e5086d7a3
3 changed files with 16 additions and 0 deletions
11
src/Components/Quote/QuoteCard.js
Normal file
11
src/Components/Quote/QuoteCard.js
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
import React from 'react';
|
||||||
|
import './quote.css'
|
||||||
|
|
||||||
|
export default function
|
||||||
|
QuoteCard(props) {
|
||||||
|
const { name, key } = props;
|
||||||
|
|
||||||
|
return ( <div><h2>{name}</h2>
|
||||||
|
<h4>{key}</h4></div>
|
||||||
|
);
|
||||||
|
}
|
5
src/Components/Quote/quote.css
Normal file
5
src/Components/Quote/quote.css
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
.quotes {
|
||||||
|
|
||||||
|
font-family: "../Assets/Fonts/KHGummi";
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue