react-cookie-consent/stories/defaults/intro.tsx

12 lines
235 B
TypeScript
Raw Permalink Normal View History

import { FunctionComponent } from "react";
type Props = {};
export const Intro: FunctionComponent<Props> = () => {
return (
<h1>
<p>Debug is turned on for all stories so that the bar always shows up</p>
</h1>
);
};