diff options
author | 2021-12-22 16:11:05 -0500 | |
---|---|---|
committer | 2021-12-22 16:11:05 -0500 | |
commit | 6ddd7678ffb6598ae6e263706813cb5e94535f02 (patch) | |
tree | d4b45f7590b59c3574bd6593b17d8066f71007c6 /examples/portfolio/src/components/Button/index.jsx | |
parent | 305ce4182fbe89abcfb88008ddce178bd8863b6a (diff) | |
download | astro-6ddd7678ffb6598ae6e263706813cb5e94535f02.tar.gz astro-6ddd7678ffb6598ae6e263706813cb5e94535f02.tar.zst astro-6ddd7678ffb6598ae6e263706813cb5e94535f02.zip |
Use accessible indentation (#2253)
Diffstat (limited to 'examples/portfolio/src/components/Button/index.jsx')
-rw-r--r-- | examples/portfolio/src/components/Button/index.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/portfolio/src/components/Button/index.jsx b/examples/portfolio/src/components/Button/index.jsx index 0e1b6a4c8..d8e04aa71 100644 --- a/examples/portfolio/src/components/Button/index.jsx +++ b/examples/portfolio/src/components/Button/index.jsx @@ -2,7 +2,7 @@ import { h } from 'preact'; import Styles from './styles.module.scss'; function Button({ children }) { - return <span className={Styles.button}>{children}</span>; + return <span className={Styles.button}>{children}</span>; } export default Button; |