forked from verdnatura/salix-front
14 lines
228 B
JavaScript
14 lines
228 B
JavaScript
|
import axios from 'axios';
|
||
|
|
||
|
export function useUserConfig() {
|
||
|
|
||
|
async function fetch() {
|
||
|
const { data } = await axios.get('UserConfigs/getUserConfig');
|
||
|
return data;
|
||
|
}
|
||
|
|
||
|
return {
|
||
|
fetch,
|
||
|
};
|
||
|
}
|