Skip to content

Commit

Permalink
Merge pull request #12 from ferryops/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
ferryops committed Jul 20, 2023
2 parents 386cbe8 + cbddc9b commit 337ff51
Show file tree
Hide file tree
Showing 7 changed files with 3,674 additions and 633 deletions.
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
// output: "export",
images: {
domains: ["lh3.googleusercontent.com"],
},
Expand Down
14 changes: 14 additions & 0 deletions src/components/OptionAssessment.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import React from "react";
import styles from "@/styles/pakar.module.css"
const OptionAssessment = () => {
return (
<>
<option value="0" className={styles["red"]}>Tidak Dilakukan</option>
<option value="1" className={styles["yellow"]}>Dalam Perencanaan</option>
<option value="2" className={styles["green"]}>Diterapkan Sebagian</option>
<option value="3" className={styles["blue"]}>Diterapkan Menyeluruh</option>
</>
);
};

export default OptionAssessment;
Loading

0 comments on commit 337ff51

Please sign in to comment.