Skip to content

Instantly share code, notes, and snippets.

@Manntrix
Created September 22, 2020 05:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Manntrix/77d09e5a2c72dbdab332373b6b3efdd2 to your computer and use it in GitHub Desktop.
Save Manntrix/77d09e5a2c72dbdab332373b6b3efdd2 to your computer and use it in GitHub Desktop.
import React from 'react';
import './App.scss';
function App() {
return (
<>
{/* Variable Example */}
<h1>This is a variable example</h1>
{/* Nested Rules */}
<div id="nested">
<h3>This is a nested rules example</h3>
</div>
{/* Interpolation Example */}
<p className="interpolation">Interpolation Example.</p>
{/* Function Example */}
<div id="function">
<h3>This is a function example</h3>
</div>
{/* Mixin Example */}
<div id="mixin">
<p>This is mixin Example</p>
</div>
</>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment