Apply Prettier styles

This commit is contained in:
Dm1tr1y147 2020-11-27 17:41:31 +00:00 committed by GitHub Actions
parent c10f150ca9
commit 484d7c81cf

View File

@ -1,10 +1,10 @@
import React from 'react';
import { useCounter } from "hooks/counter"
import React from "react";
import { useCounter } from "hooks/counter";
import styles from "styles/exampleComponent.module.css";
const ExampleComponent = () => {
const {} = useCounter()
const {} = useCounter();
return <button className={styles.button}>Amazing button by Timothy!</button>;
};