mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-21 04:19:37 +02:00
Apps grid
This commit is contained in:
parent
7199e296b8
commit
0502a653ac
12 changed files with 171 additions and 13 deletions
18
client/src/components/Apps/AppCard/AppCard.tsx
Normal file
18
client/src/components/Apps/AppCard/AppCard.tsx
Normal file
|
@ -0,0 +1,18 @@
|
|||
import classes from './AppCard.module.css';
|
||||
import Icon from '../../UI/Icon/Icon';
|
||||
|
||||
const AppCard = (): JSX.Element => {
|
||||
return (
|
||||
<div className={classes.AppCard}>
|
||||
<div className={classes.AppCardIcon}>
|
||||
<Icon icon='mdiBookOpenBlankVariant' />
|
||||
</div>
|
||||
<div className={classes.AppCardDetails}>
|
||||
<h5>plex</h5>
|
||||
<a href="/">plex.example.com</a>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default AppCard;
|
Loading…
Add table
Add a link
Reference in a new issue