---
/**
* TryThis — practice exercise, <10 minutes, applies to reader's own
* project. Converts reading to doing.
*
* Default title is "Try this" — override for specificity:
* ...
*
* Usage:
*
* Open a chapter from your current work and run `/context`. What
* percentage is already filled? What would you evict first?
*
*/
interface Props {
title?: string;
}
const { title = 'Try this' } = Astro.props;
---