
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
@adactive/arc-clock
Advanced tools
The clock component is, in reality, a wrapper function, which wraps the component, which you supply and provides all the props you need to create your own look and feel for the clock :)

npm i --save @adactive/arc-clock
OR
yarn add @adactive/arc-clock
import AdsumClock from "@adactive/arc-clock"
...
// Your own stateless UI component for the clock
// You will be provided with props, which are described below
const ClockUi = (props) => (
<div role="presentation" className="adsum-clock-wrapper">
<div className="adsum-clock">
<div className="day-date">{props.dateStr}</div>
<div className="time">{props.timeStr}</div>
</div>
</div>
);
// The actual wrapping of your component with AdsumClock wrapper
const Clock = AdsumClock(ClockUi);
// Usage of the wrapped component
<Clock lang="en" timeFormat="12hrs" />
static defaultProps = {
lang: 'en',
timeFormat: '24hrs',
};
type AdsumClockPropsType = {
lang: LangType,
timeFormat: TimeFormatType
};
{
+year: string,
+month: string,
+day: string,
+hours: string,
+minutes: string,
+dateStr: string,
+timeStr: string
};
type LangType = 'en' | 'zh' | 'fr';
type TimeFormatType = '24hrs' | '12hrs';
type AdsumClockPropsType = {
lang: LangType,
timeFormat: TimeFormatType
};
`npx @adactive/arc-clock copy --less-only`
`npx @adactive/arc-clock copy`
FAQs
Adsum Clock Component
We found that @adactive/arc-clock demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.