Skip to content

Instantly share code, notes, and snippets.

@robzlabz
Last active January 7, 2021 05:04
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 robzlabz/2da7a23e8d515fedf85f5aed913d7e6b to your computer and use it in GitHub Desktop.
Save robzlabz/2da7a23e8d515fedf85f5aed913d7e6b to your computer and use it in GitHub Desktop.
import React from "react";
const KomponenFungsi = () => {
return <h1>Halo, Ini dibuat dengan Functional Component</h1>;
};
/// atau 👇
function KomponenFungsiBentukLain() {
return <h1>Halo, ini komponen fungsi</h1>;
};
@robzlabz
Copy link
Author

robzlabz commented Jan 7, 2021

update

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment