Skip to content

Instantly share code, notes, and snippets.

@imkost
Last active April 23, 2018 18:13
Show Gist options
  • Select an option

  • Save imkost/461b3c500bdf313df9c03e700691e122 to your computer and use it in GitHub Desktop.

Select an option

Save imkost/461b3c500bdf313df9c03e700691e122 to your computer and use it in GitHub Desktop.

Revisions

  1. K. Zemtsovsky renamed this gist Apr 23, 2018. 1 changed file with 5 additions and 0 deletions.
    5 changes: 5 additions & 0 deletions m_2.js → m_2.jsx
    Original file line number Diff line number Diff line change
    @@ -1,3 +1,8 @@
    <div class="Page">
    <h2 class="Page__title">IT Company</h2>
    <div class="Page__content">We develop apps</div>
    </div>

    {
    class: 'Page',
    inner: [
  2. K. Zemtsovsky created this gist Apr 23, 2018.
    14 changes: 14 additions & 0 deletions m_2.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    {
    class: 'Page',
    inner: [
    {
    tag: 'h2',
    class: 'Page__title',
    inner: 'IT Company'
    },
    {
    class: 'Page__content',
    inner: 'We develop apps'
    }
    ]
    }