Lesson
Show it or don't
A vacant lot stays empty. A claimed lot gets a house. The page picks which markup to paint.
{claimed ? <House tag="Ada" /> : <p>Vacant</p>}If you only need the house when the lot is claimed:
{claimed && <House tag="Ada" />}Town paints empty lots this way.