i forgot to run prettier on the component

This commit is contained in:
Hello9999901 2022-08-01 12:20:43 -04:00
parent 2b3d542bbb
commit 9391acee45

View file

@ -5,12 +5,16 @@
*/ */
import React from "react"; import React from "react";
import Admonition from '@theme/Admonition'; import Admonition from "@theme/Admonition";
export default function SpellingCaution() { export default function SpellingCaution() {
return ( return (
<Admonition type="caution"> <Admonition type="caution">
<p>Take extra notice of the spelling of the keycodes, especially the shorthand spelling. Otherwise, it will result in an elusive parsing error!</p> <p>
Take extra notice of the spelling of the keycodes, especially the
shorthand spelling. Otherwise, it will result in an elusive parsing
error!
</p>
</Admonition> </Admonition>
); );
} }