<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Jonatan Mata Umaña</title>
    <description>The latest articles on DEV Community by Jonatan Mata Umaña (@jonmatum).</description>
    <link>https://dev.to/jonmatum</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3224020%2Fc617698b-4aa7-4dc2-af09-0faea4801055.jpg</url>
      <title>DEV Community: Jonatan Mata Umaña</title>
      <link>https://dev.to/jonmatum</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jonmatum"/>
    <language>en</language>
    <item>
      <title>Hello everybody out there using React</title>
      <dc:creator>Jonatan Mata Umaña</dc:creator>
      <pubDate>Sun, 31 Aug 2025 01:32:20 +0000</pubDate>
      <link>https://dev.to/jonmatum/hello-everybody-out-there-using-react-7p0</link>
      <guid>https://dev.to/jonmatum/hello-everybody-out-there-using-react-7p0</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;I always wanted to write a post like Linus Torvald's famous Linux announcement, so here goes...&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I'm doing a (free) component library for micro frontends (just a hobby, won't be big and professional like Material-UI or Ant Design) for React 18+. This has been brewing since August, and is starting to get ready. I'd like any feedback on things people like/dislike in component libraries, as my library resembles existing ones somewhat (same basic philosophy of atomic design, among other things).&lt;/p&gt;

&lt;p&gt;I've currently ported most of the components I need, and a few utilities, but it's still very much a work in progress. This means it's not fully tested in all scenarios yet, but I'm getting there. It should be ready for broader use in a few weeks (or months - who knows). I'd like to know what features most people would want. Any suggestions are welcome, but I won't promise I'll implement them :-)&lt;/p&gt;

&lt;h2&gt;
  
  
  What I've got so far
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;&lt;code&gt;@jonmatum/react-mfe-shell&lt;/code&gt;&lt;/strong&gt; - because naming things is hard.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tsx"&gt;&lt;code&gt;&lt;span class="c1"&gt;// This works right now:&lt;/span&gt;
&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;SettingsProvider&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;Button&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;FormField&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;Input&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;@jonmatum/react-mfe-shell&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;App&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;return &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;SettingsProvider&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
      &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;FormField&lt;/span&gt; &lt;span class="na"&gt;label&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;"Email"&lt;/span&gt; &lt;span class="na"&gt;required&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
        &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;Input&lt;/span&gt; &lt;span class="na"&gt;type&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;"email"&lt;/span&gt; &lt;span class="na"&gt;placeholder&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;"Enter email"&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
      &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nc"&gt;FormField&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
      &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;Button&lt;/span&gt; &lt;span class="na"&gt;variant&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;"primary"&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;Submit&lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nc"&gt;Button&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nc"&gt;SettingsProvider&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
  &lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Basic stats: 24 components, TypeScript support, multiple integration paths (zero-config or Tailwind), and a theme system that actually works.&lt;/p&gt;

&lt;h2&gt;
  
  
  The real test: axisight.io
&lt;/h2&gt;

&lt;p&gt;Because you have to eat your own dog food, I built &lt;a href="http://axisight.io/" rel="noopener noreferrer"&gt;axisight.io&lt;/a&gt; using this library. It's a tool I'm working on, and everything you see there runs on the component library. If it works for a real application, it should work for you too.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I built this
&lt;/h2&gt;

&lt;p&gt;I was working on micro frontend projects and kept thinking "there has to be a better way to share components between apps." Most libraries assume you're building one big SPA, but what if you're not?&lt;/p&gt;

&lt;p&gt;So I built something that works, integrates with existing setups, and actually has the components you use daily.&lt;/p&gt;

&lt;h2&gt;
  
  
  You’re welcome to try it if you’d like.
&lt;/h2&gt;

&lt;p&gt;This is very much a work in progress, so expect some rough edges:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.npmjs.com/package/@jonmatum/react-mfe-shell" rel="noopener noreferrer"&gt;NPM Package&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/jonmatum/react-mfe-shell" rel="noopener noreferrer"&gt;GitHub Repository&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://jonmatum.github.io/react-mfe-shell/" rel="noopener noreferrer"&gt;Live Demo&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://axisight.io/" rel="noopener noreferrer"&gt;AxiSight.io&lt;/a&gt; - real app built with it
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; @jonmatum/react-mfe-shell
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  What I'd like to know
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;What components do you rebuild constantly?&lt;/li&gt;
&lt;li&gt;What annoys you about existing libraries?&lt;/li&gt;
&lt;li&gt;Any micro frontend pain points?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Will this become the next big thing? Probably not. But it's free, it's open source, and it solves some problems I was having.&lt;/p&gt;

&lt;p&gt;Plus, I finally got to write a post like Linus's Linux announcement. Always wanted to do that! 😄&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;echo "Pura Vida &amp;amp; Happy Coding!";&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;&lt;em&gt;PS: This post format is inspired by Linus Torvalds' famous Linux announcement in 1991.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>react</category>
      <category>microfrontend</category>
      <category>componentlibrary</category>
      <category>softwareengineering</category>
    </item>
  </channel>
</rss>
