mirror of
https://github.com/bendtherules/some-hooks.git
synced 2026-08-18 13:52:05 +00:00
10 lines
174 B
JavaScript
10 lines
174 B
JavaScript
import React from "react";
|
|
|
|
import { useMyHook } from "some-hooks";
|
|
|
|
const App = () => {
|
|
const example = useMyHook();
|
|
return <div>{example}</div>;
|
|
};
|
|
export default App;
|