ayco.io-astro/src/components/Back.astro

18 lines
219 B
Text

---
export interface Props {
url: string;
}
const { url } = Astro.props;
---
<nav><a href={url}>&larr; Back</a></nav>
<style>
nav {
margin-bottom: -1rem;
}
nav a {
text-decoration: none;
}
</style>