summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/src/views/about.tsx
blob: 4cd544b5ff58d032410cee36bc94323d1d848cd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import * as React from 'react';

const AboutComponent = () => {

  return (
    <div>
      <h2>About</h2>
      <div style={{ margin: "0 auto" }}>##odlux.version##</div>
    </div>
  );
};

export const About = AboutComponent;
export default About;