AutorÃa | Ultima modificación | Ver Log |
import { axios } from '@utils';export const getNetworkStyles = async () => {const response = await axios.get('/network/styles');const { data, success } = response.data;if (!success) throw new Error('Error al obtener los estilos de la red');return data;};