mirror of
https://github.com/veeso/termscp.git
synced 2026-09-17 09:35:57 -07:00
a2d766d688
Add Site GitHub Actions workflow running prettier format check, astro check, tests, and build on changes under site/. Wire prettier into the site package with config, ignore, and scripts, and format existing sources.
13 lines
252 B
Plaintext
13 lines
252 B
Plaintext
---
|
|
interface Props {
|
|
title: string;
|
|
body: string;
|
|
}
|
|
const { title, body } = Astro.props;
|
|
---
|
|
|
|
<div class="rounded-lg border border-line bg-mantle p-5">
|
|
<h3 class="text-green">{title}</h3>
|
|
<p class="mt-2 text-sm text-subtext">{body}</p>
|
|
</div>
|