From 5f6ef99eae91f53239f08143cead1249893fef81 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Mon, 6 May 2024 22:28:48 +0200 Subject: Initial commit --- lib/components/triple_frequency.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lib/components/triple_frequency.js (limited to 'lib/components/triple_frequency.js') diff --git a/lib/components/triple_frequency.js b/lib/components/triple_frequency.js new file mode 100644 index 0000000..aa768e3 --- /dev/null +++ b/lib/components/triple_frequency.js @@ -0,0 +1,12 @@ +import { Component } from '@serpentity/serpentity'; + +export default class TripleFrequency extends Component { + constructor(config) { + + super(config); + + this.a = Math.random(); + this.b = Math.random(); + this.c = Math.random(); + } +}; -- cgit