
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
atomic-library-core
Advanced tools
this is library of react components and some functions useful for development
this is a library of react components and other useful functions for development
npm install atomic-library-core
yarn add atomic-library-core
This is little demo about containers, all of them are basically the same component, the difference is that each one return a sematic tag
import {
Box,
Header,
Main,
Aside,
Footer,
AtomicContext
} from 'atomic-library-core'
function App() {
const [state, setState] = useState(false)
return (
<>
<Box
atmClass="grid grid-cols-3 gap:10px m-4"
areas={`
'header header header'
'main main aside'
'footer footer footer'
`}
>
<AtomicContext.Provider value={`rounded ${state ? "bg:#808B96" : "bg:#D5D8DC"}`}>
<Header atmClass="h:80px area:header"/>
<Main atmClass="flex flex-wrap gap:10px area:main bg:none .first{ rounded-5 } ">
<Box atmClass="h:150px w-full" className='first'/>
<Box atmClass="h:150px w-full"/>
<Box atmClass="h:150px w-full"/>
</Main>
<Aside atmClass="h:400px area:aside"/>
<Footer atmClass="h:80px area:footer"/>
</AtomicContext.Provider>
</Box>
</>
)
}
export default App
Result:
this is the new version of my-library-core
FAQs
this is library of react components and some functions useful for development
We found that atomic-library-core demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.