¿Qué método se usa directamente después de un método Fetch () o get () (Get in Axios)?

import axios from 'axios'
const data = axios.get('https://jsonplaceholder.typicode.com/posts')
				.then(response => response.json())	// convert response to json which is again a promise
				.then(data => console.log(data)) // get the final required data and do anything with it
				.catch(error => console.error(error)) // catch error if it occurs in any of above 2 lines of code
Stupid Skipper