import Container from "./container"; import cn from "classnames"; import { EXAMPLE_PATH } from "../lib/constants"; export default function Alert({ preview }) { return (
{preview ? ( <> This is page is a preview.{" "} Click here {" "} to exit preview mode. ) : ( <> The source code for this blog is{" "} available on GitHub . )}
); }