18 lines
219 B
Text
18 lines
219 B
Text
---
|
|
export interface Props {
|
|
url: string;
|
|
}
|
|
const { url } = Astro.props;
|
|
---
|
|
|
|
<nav><a href={url}>← Back</a></nav>
|
|
|
|
<style>
|
|
nav {
|
|
margin-bottom: -1rem;
|
|
}
|
|
|
|
nav a {
|
|
text-decoration: none;
|
|
}
|
|
</style>
|