[ci] yarn format

This commit is contained in:
FredKSchott 2021-12-13 18:37:58 +00:00 committed by GitHub Actions
parent 23b7756d6b
commit fbbeee41aa
4 changed files with 4 additions and 4 deletions

View file

@ -7,7 +7,7 @@ import { counter, increaseCounter, decreaseCounter } from '../store/counter.js';
const AdminsReact = () => {
const list = useStore(admins);
const count = useStore(counter);
return (
<>
<h1>React</h1>

View file

@ -25,6 +25,6 @@ const AdminsSolid = () => {
<br />
</>
);
}
};
export default AdminsSolid;

View file

@ -26,7 +26,7 @@ export default {
setup() {
const list = useStore(admins);
const count = useStore(counter);
return { list, count, increaseCounter, decreaseCounter };
},
};

View file

@ -19,7 +19,7 @@ const initialValue = [
age: 46,
isAdmin: true,
},
]
];
const users = atom(initialValue);