mirror of
https://github.com/Mastermindzh/react-cookie-consent.git
synced 2025-01-21 02:50:58 +01:00
12 lines
235 B
TypeScript
12 lines
235 B
TypeScript
|
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>
|
||
|
);
|
||
|
};
|