I can't render the blog posts

Good!

I have managed to print the posts in the front where I am interested in rendering some of them and then I want to make the typical page in which they are all.

Ok, I have created a new url, but now when using frontity.state.source the posts do not appear in it. What am I doing wrong? Should I manually do a global state?

All the best.

Hi,

can you share any code? what’s your URL for your list page?

Did you check out the mars-theme example?

J

Hi!

I have solved it with a with the following:

useEffect(() => {
      actions.source.fetch('/');
  }, []);

I don’t know if it’s the right thing to do, but this is how it loads all the API information.

Thank you!