14 lines
175 B
TypeScript
14 lines
175 B
TypeScript
|
import React from 'react';
|
||
|
import {
|
||
|
useDispatch,
|
||
|
} from 'react-redux';
|
||
|
|
||
|
export default function() {
|
||
|
const dispatch = useDispatch();
|
||
|
|
||
|
return <>
|
||
|
<p>
|
||
|
</p>
|
||
|
</>;
|
||
|
}
|