make some fun components for rich text and events 🎷
This commit is contained in:
13
web/src/components/events/EventItem.tsx
Normal file
13
web/src/components/events/EventItem.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
import styles from "./eventItem.module.scss";
|
||||
|
||||
export const EventItem = () => {
|
||||
return (
|
||||
<li className={`${styles.eventItem} linkItem`}>
|
||||
<div className={styles.image}></div>
|
||||
<div className={styles.text}>
|
||||
<h1 className={styles.title}>Arrangementstittel</h1>
|
||||
<p className={styles.details}>Detaljer og tidspunkt</p>
|
||||
</div>
|
||||
</li>
|
||||
);
|
||||
};
|
Reference in New Issue
Block a user